//OPEN NEW WINDOW
function openWin(URL, FEATURES) {
    window.open(URL, 'Picture', FEATURES);	
}

//SHOW TOOLBAR MENU
function showmenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="visible"
}

//HIDE TOOLBAR MENU
function hidemenu(elmnt)
{
    document.getElementById(elmnt).style.visibility="hidden"
}

//DELETE
function doDelete(id)
{

    var agree = confirm('Are you sure you want to delete this record?');
    if (agree) {
        document.forms[0].id.value = id;
        document.forms[0].submit();
    } else {
	    return false;
    }

}