
function blastWindow(theURL,winName,features) {
	window.open(theURL,winName,features);
}

function blastSecurityCodeWindow(cardSelected) {
    
    var helpCodeUrl;
    if(cardSelected == 'AMEX')
    {
      helpCodeUrl = 'popups/securityCodeAMEX.jsp'
    }
    else
    {
     helpCodeUrl = 'popups/securityCodeVisaMCDsc.jsp'
    }
    //alert("card seletectd" +cardSelected + "r" + helpCodeUrl);
	var cardWin = window.open(helpCodeUrl,"cardHelp","scrollbars=yes,resizable=yes,width=300,height=250");
	cardWin.moveTo(100,100);
	cardWin.focus();
}

function blastCheckingWindow() {
   	popupWindow('checking_help.html');
}

function blastHelpWindow(anchorLink) {
	window.open('popups/incFormHelp.jsp#' + anchorLink,'package','status=no,scrollbars=yes,resizable=yes,width=490,height=400,location=no');
}

function popupWindow(theURL) {
	blastWindow(theURL,'popupWindow','status=no,scrollbars=yes,resizable=yes,width=490,height=400,location=no');
}