<!--

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()

{

       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();

               return 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.');

               return false;

       }

       return true;

}

//-->