
 function disableNewWindow(e)
 {
    if(window.event)
    {
        if(window.event.ctrlKey && String.fromCharCode(window.event.keyCode).toLowerCase() == 'n')
        {
            alert('Multiple browser instances are disabled.');
            return false;
        }    
    }
    return true;
 }

function openWindow()
{
    window.open("/includes/Disclaimer.html","Disclaimer","scrollbars=yes,toolbar=no,status=no,location=no,directories=no,width=800,height=550,top=50,left=200");
}

function ShowWaitDisplay()
{
    if(Page_ClientValidate())
    {
        document.getElementById("aspnetForm").style.display="none"; 
        IFrame = document.getElementById("WaitFrame"); 
        IFrame.src = "WaitForm.html" 
        IFrame.style.display = "inline"; 
        return true; 
    }
}
        
  