function checkForm() {

  var theMessage = "Please fill out the following required field\(s\) before submitting your request:\n\n\n";
  var errors = "";

  if (document.form.Name.value == "") errors = errors + "    Full Name \n\n";

  if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.form.E_Mail.value)) {
  }
  else {
      errors = errors + "    Please enter a valid E-Mail address. \n\n";
  }
  
  if (document.form.Phone.value == "") errors = errors + "    Phone \n\n";

  if (document.form.Address.value == "") errors = errors + "    Address \n\n";

  if (document.form.City.value == "") errors = errors + "    City\n\n";

  if (document.form.State.value == "") errors = errors + "    State \n\n";

  if (document.form.Zip.value == "") errors = errors + "    Zip \n\n";

  if (document.form.strCAPTCHA.value == "") errors = errors + "    Please fill in the Security Code \n\n";
   
  if (errors != "") {
     alert(theMessage+errors);
     return false;
     }
  return true;
}


