// JavaScript Document
function showmenu(elmnt)
{
document.getElementById(elmnt).style.visibility="visible"
}
function hidemenu(elmnt)
{
document.getElementById(elmnt).style.visibility="hidden"
}

// This function si for the sizeable HTML
function NewWindow(strURL){
    window.open(strURL, "_blank", "width=600, height=580, scrollbars=no, resizable=no, toolbar=no, location=no, directories=no, status=no, menubar=no, copyhistory=no, left=0, top=0, screenX=0, screenY=0");
}