/* 
 * 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 chkyorn(url)
{
    var c = confirm("Are you sure you want to remove this item");

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

function js_required_text(fld, name)
{
    var fld = document.getElementById(fld);
    if (fld.value=="" || fld.value==null)
        {
            alert(name + " cannot be empty");
            return false;
        } else return true;
}

function js_required_file(fld, name)
{
    var fld = document.getElementById(fld);
    if (fld.value=="" || fld.value==null)
        {
            alert(name + " cannot be empty");
            return false;
        } else return true;
}

function js_required_date(fld, name)
{
    alert(fld.value);
}

