// this javascript is for the loan calculator
function popMC(clName) {

    //alert("Try Again");
    tURL = "http://sst.netbiz.com/_nbSSTCentral/_oldTools/_mortgageCalc/nbMortcalc.php?clientID=" + clName;
    tWinName = "popWindow_";
    tOptions = "height=500,width=520,resizable=no,scrollbars=yes";
    popWin = window.open(tURL,tWinName,tOptions);

    if(popWin.blur){
        popWin.focus();
    }

}