//pop up window logic

<!--
//interactive demo pop up
// domain statement needed for interactive popup
// document.domain = "bnyinform.com";
window.name = "InformPL_Top";
function openDemo(){

    window.open('intDemo.htm', 'windowname', 'type=fullWindow,fullscreen,scrollbars=yes,titlebar=no');
}

function loginPopup(){
    // alert("opening window");

    // fix for Vista
    //alert(navigator.userAgent);
    if( navigator.userAgent.indexOf("Windows NT 6.0") != -1)
    {
        alert('Attention Windows Vista Users: \n \nWe are in the process of certifying Windows Vista for use with this application.  Please continue to use supported operating systems (Windows 2000/XP/NT) until further notice.  We will notify you again once Windows Vista is certified and cleared for use.  Thank you.')
    }
    // end fix for vista

    window.open("https://ii.bnyinform.com/inform/loginPopup.htm", "logoinpop", "width=257,height=256,status=1")
}
//-->
