
function checkPage(){
internalClick = false;

var val= document.getElementById("proloc").value;
    if(val.length<1) {document.getElementById("prolocspan").style.display="block";return false;}
    else {
          document.getElementById("prolocspan").style.display="none";
          
         }

if(document.forma.loan.value=="Home Purchase"){
document.forma.action="http://www.smartquote.com/smarthome/smart/mortgageLoans/mortgageformhomepurchase.jsp";
internalClick = true;
}
else if(document.forma.credit.value=="Poor"|| document.forma.credit.value=="Needs Improvement" || document.forma.credit.value=="Fair"){
document.forma.action="http://www.smartquote.com/smarthome/smart/mortgageLoans/mortgageformsubcredit.jsp";
internalClick = true;
return true;
}
else document.forma.action="http://www.smartquote.com/smarthome/smart/mortgageLoans/mortgageformdual.jsp";
internalClick = true;
return true;
}
