/* 
 * 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");
}

function chkyorn(url)
{
    var c = confirm("Are you sure you want to remove this item");

    if (c)
        {
            window.location=url;
        } else return false;
}