// JavaScript Document

function checkForm() {
	
	errors = 0;
	
	errors = validateEmail("estimate_email",errors);
	  
  if (errors == 1){
  return false;
  }
  else{
  return true;
  }
  
}