function spotlight_coupon(filePath,srcDisplay,srcSearch) {
    var axel = Math.random()+"";
    var a = axel * 10000000000000;
    var spotpixD = new Image();
    spotpixD.src = "http://ad.doubleclick.net/activity;" + srcDisplay + "num=" + a + "?";

    var axel = Math.random()+"";
    var a = axel * 10000000000000;
    var spotpixS = new Image();
    spotpixS.src = "http://ad.doubleclick.net/activity;" + srcSearch + "num="+ a + "?";
            
    spotpixS.load; //Loads image before pdf is called
    }

function ValidateCoup() {			
	if (document.qualify.cboState.value=='')
		{alert("Please enter a State");
		document.qualify.cboState.focus();
		return false;
		}
	if (!document.qualify.currently_pay[0].checked &&
		!document.qualify.currently_pay[1].checked &&
		!document.qualify.currently_pay[2].checked)
		{alert("How do you currently pay for your prescriptions?");
		//document.qualify.currently_pay.focus();
		return false;
		}
	if (!document.qualify.fill_prescrip[0].checked &&
		!document.qualify.fill_prescrip[1].checked)
		{alert("How do you choose to fill your prescriptions?");
		//document.qualify.fill_prescrip.focus();
		return false;
		}							
	var bError=true;
	if (document.qualify.cboState.value=='Colorado' ||
		document.qualify.cboState.value=='Maine' ||
		document.qualify.cboState.value=='Massachusetts') 
	{
		// wrong radio button is selected
		document.getElementById('error1').className="show_error";
		document.getElementById('button').className="error";
		bError=false;
	}
	if (document.qualify.currently_pay[1].checked) 
	{
		// wrong radio button is selected
		document.getElementById('error2').className="show_error";
		document.getElementById('button').className="error";
		bError=false;
	}
	if (document.qualify.fill_prescrip[1].checked) 
	{
		// wrong radio button is selected
		document.getElementById('error3').className="show_error";
		document.getElementById('button').className="error";
		bError=false;
	}
	
	if(bError==false) {
		spotlight_coupon (this,'src=1595705;type=maxal618;cat=maxal871;ord=1;','src=887836;type=maxal811;cat=maxal517;ord=1;');
		}	
	return bError;
}
