﻿// JScript File

// JScript File

//Open new promotion window//
    function openNewWindow()
    {        
        mmkwindow=window.open('http://www2.smart-quotes.com/click.asp?s=L&sn=SQ10227&ctc=1281&src=1580&lnk=658&cmpg=MPSRegistrationPage1&web=&brn=751','MyMortgageKey','left=640,top=100,status=yes,toolbar=yes,menubar=yes,width=790,height=500location=yes,resizable=yes,scrollbars=yes,titlebar=yes');        
    }
    //adds events to the submit button
   function sltSaveMoneyOnMortgageChanged(slt)
    {
        spnDisplay=document.getElementById('spnNewWindowWarning');
        var btn=document.getElementById('ctl00_cplLR_btnSubmit');
        if('Yes'==slt.value)  
        {
            spnDisplay.innerHTML='Once you click continue, a pop up window will be initiated. To finish your MyPropertyspy registration you must complete the next page which will appear in the current window.';
                
            if( btn.addEventListener )
            {
            btn.addEventListener('click',openNewWindow,false);
            } 
            else if ( btn.attachEvent ) 
            {
            btn.attachEvent('onclick',openNewWindow);
            }
        }
        else 
        {
            spnDisplay.innerHTML='';
            if( btn.removeEventListener )
            {
            btn.removeEventListener('click',openNewWindow,false);
            } 
            else if ( btn.detachEvent ) 
            {
            btn.detachEvent('onclick',openNewWindow);
            }           
        }        
    }


