// JavaScript Document

// Estimate Validation

<!--

function validate(frm) {


   if (frm.Contact.value.length == 0){
       alert("Please enter your Contact Name.");
       frm.Contact.focus();
       return false;
   }

	   

 // Start Check Email

	if (frm.Email.value == "") {
		alert("\Please enter your email.")
		frm.Email.focus();
		return false; 
		}
	if (frm.Email.value.indexOf ('@',0) == -1 || 
		frm.Email.value.indexOf ('.',0) == -1)
		{
		alert("\nThis not a valid email address. Please re-enter.")	
		frm.Email.focus();
		return false;
	}

    // End Check Email

}

//-->
