function verify()
{
if (document.frm.zip.value == '')
{
alert("Please enter your zip code. This helps us find the best agents in your area");
document.frm.zip.focus();
return false;
}
if (!document.frm.currentins[0].checked && !document.frm.currentins[1].checked )
{
alert('Please indicate if you currently have health insurance coverage');
document.frm.currentins.focus();
return false;
}
if (document.frm.numberofppl.value == "")
{
alert('Please indicate what type of health insurance you need');
document.frm.numberofppl.focus();
return false;
}
return true;
}