function focuson(){
	document.contactForm.contactCaptcha.focus()
}

function check(){
	if(document.contactForm.contactCaptcha.value==0){
		alert("Please type the characters in the field below.");
		document.contactForm.contactCaptcha.focus();
		return false;
	}
}

function ValidateForm()
{
//alert(document.getQuoteForm.mda_zip.value);
 return false;
 if (document.getQuoteForm.mda_zip.value.search(/^\d{5}/) == -1) {
 strErr = strErr + "Zip Code is required and must be in the format 00000.\n";
 //SetErrorImage("ZipCode", true);
 }
 else {
 //SetErrorImage("ZipCode", false);
 }

 if (strErr != "") {
 alert(strErr);
 return false;
 }
 preserveRefby();
 //return true;
 return false;
}

function SetErrorImage(strFieldName, blnIsError)
{
 if (blnIsError) {
 eval("document.getQuoteForm."+strFieldName+"_ErrImg.src = \"http://www.insureme.com/images/alert.gif\"");
 }
 else {
 eval("document.getQuoteForm."+strFieldName+"_ErrImg.src = \"http://www.insureme.com/images/trans.gif\"");
 }
}
