function checkForm() {

  var theMessage = "Please fill out the following required field\(s\) before submitting your request:\n\n\n";
  var errors = "";

  if (document.form.fName.value == "") errors = errors + "    First Name \n\n";
  
  if (document.form.lName.value == "") errors = errors + "    Last Name \n\n";
  
  if (document.form.Address.value == "") errors = errors + "    Property Address \n\n";
  
  if (document.form.City.value == "") errors = errors + "    Property City \n\n";
  
  if (document.form.State.value == "") errors = errors + "    Property State \n\n";
  
  if (document.form.Zip.value == "") errors = errors + "    Property Zip \n\n";
  
  if (document.form.EMail.value.indexOf('@') == "-1") errors = errors + "    Please enter a valid e-mail address. \n\n";
  
  if (document.form.PhoneNumb1.value == "") errors = errors + "    Phone Number \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;
}

