function printPage() {
if (window.print)
window.print()
else
alert("Sorry, your browser doesn't support this feature.");
}


function ValidatePassword(txtPassword)
{
alert("Invalid password")  
//
// check database - if valid then
// window.open(WindowName, WindowName.substring(1,WindowName.length - 4), 'width=' + newWidth + ',height=' + newHeight + ',resizable=yes,scrollbars=yes,toolbars=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
} 

/************************************************************************************************************
    THIS FUNCTION OPENS A NEW POP-UP STYLE WINDOW. THE NAME IS REQUIRED AND THE WIDTH AND HEIGHT ARE OPTIONAL 
************************************************************************************************************/
function openWindow(WindowName, newWidth, newHeight){
if (newWidth == null) { newWidth = 750 }
if (newHeight == null) { newHeight = 600 }

window.open(WindowName, WindowName.substring(1,WindowName.length - 4), 'width=' + newWidth + ',height=' + newHeight + ',resizable=yes,scrollbars=yes,toolbars=no,location=no,directories=no,status=no,menubar=no,copyhistory=no');
}
