function checkForm() {

  var theMessage = "Please fill out the following required field\(s\) before submitting your request:\n\n\n";
  var errors = "";

  if (document.form.Full_Name.value == "") errors = errors + "    Full Name \n\n";

  if (document.form.Position.value == "") errors = errors + "    Position Applied For \n\n";

  if (document.form.StartDate.value == "") errors = errors + "    When would you be able to start? \n\n";

  if ((document.form.Employed_Before[0].checked == false) && (document.form.Employed_Before[1].checked == false)) {
      errors = errors + "    Been employed for this company? \n\n";
  } 
   
  if (document.form.E_Mail.value.indexOf('@') == "-1") errors = errors + "    Please enter a valid E-Mail address. \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.Phone.value == "" && document.form.Cell_Phone.value == "") errors = errors + "    At Least 1 Phone Number \n\n";

  if ((document.form.US_Citizen[0].checked == false) && (document.form.US_Citizen[1].checked == false)) {
      errors = errors + "    Are you a citizen of the United States? \n\n";
  }

  if ((document.form.US_Citizen[1].checked == true)) {
      if ((document.form.Work_Papers[0].checked == false) && (document.form.Work_Papers[1].checked == false)) {
          errors = errors + "    If not, do you have work papers? \n\n";
      }
  }

  if ((document.form.Been_Convicted[0].checked == false) && (document.form.Been_Convicted[1].checked == false)) {
      errors = errors + "    Ever been convicted of a crime? \n\n";
  }

  if ((document.form.Been_Convicted[0].checked == true)) {
      if (document.form.Convicted_Details.value == "") errors = errors + "    Conviction details \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;
}


