function checkForm() {

  var theMessage = "Please fill out the following required field\(s\) before submitting your request:\n\n\n";
  var errors = "";

  if (document.form.Requesters_Name.value == "") errors = errors + "    Requester's Name \n\n";
  
  if (document.form.Lenders_Name.value == "") errors = errors + "    Broker Name \n\n";
  
  if (document.form.Lenders_EMail.value == "") errors = errors + "    Broker EMail \n\n";
  
  if (document.form.Phone_Number.value == "") errors = errors + "    Broker Phone Number \n\n";
  
  if (document.form.Fax_Number.value == "") errors = errors + "    Broker Fax Number \n\n";
  
  if (document.form.Borrower_First_Name.value == "") errors = errors + "    Borrower First Name \n\n";
  
  if (document.form.Borrower_Last_Name.value == "") errors = errors + "    Borrower Last Name \n\n";
  
  if (document.form.Lock_ID.value == "") errors = errors + "     Lock ID \n\n";
   
  if (document.form.Lock_Term.value == "0.00") errors = errors + "     Extension Term \n\n";
  
  if (document.form.strCAPTCHA.value == "") errors = errors + "     Enter the Security Code \n\n";
        
  if (errors != "") {
     alert(theMessage+errors);
     return false;
     }
  return true;
}


