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=='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 ||
		document.qualify.currently_pay[2].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;
	} */
	return bError;
}