function isNumeric(num) {
       st="0123456789";
       for (i=0; i<num.length; i++) {
               if (0 >st.indexOf(num.charAt(i))) return false;
       }
       return true;
}
function verify()
{
		var passed = true;
		
       if ((document.frm.autoZip.value == '') || (document.frm.autoZip.value.length != 5) || !isNumeric(document.frm.autoZip.value))
       {
               alert("Please Enter a Valid Zip Code");
               document.frm.autoZip.focus();
               passed = false;
       }
       if (!document.frm.hasins[0].checked && !document.frm.hasins[1].checked )
       {
               alert('Please indicate rather you are curently insured or have been insured in the last 30 days.');
               passed = false;
       }

       return passed;
}
