/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function openeditor(url)
{
    window.open(url, "_blank", "width=700px, resizable=yes, scrollbars=yes");
}
function pause(numberMillis)
{
var now = new Date();
var exitTime = now.getTime() + numberMillis;
while (true)
{
now = new Date();
if (now.getTime() > exitTime)
return;
}
} 
function chkyorn(url)
{
    var c = confirm("Are you sure you want to remove this item");

    if (c)
        {
            window.location=url;
        } else return false;
}

