function iappvalidator(theForm)
{
  if (theForm.Full_Name.value == "")
  {
    alert("Please enter \"Name\".");
    theForm.Full_Name.focus();
    return (false);
  }
  if (theForm.Street_Address.value == "")
  {
    alert("Please enter \"Address\".");
    theForm.Street_Address.focus();
    return (false);
  }
  if (theForm.City.value == "")
  {
    alert("Please enter \"City\".");
    theForm.City.focus();
    return (false);
  }
  if (theForm.State.value == "")
  {
    alert("Please enter \"State\".");
    theForm.State.focus();
    return (false);
  }
  if (theForm.Zipcode.value == "")
  {
    alert("Please enter \"Zip Code\".");
    theForm.Zipcode.focus();
    return (false);
  }
  if (theForm.County.value == "")
  {
    alert("Please enter \"County\".");
    theForm.County.focus();
    return (false);
  }
  if (theForm.Country.value == "")
  {
    alert("Please enter \"Country\".");
    theForm.Country.focus();
    return (false);
  }
  if (theForm.Home_Phone.value == "")
  {
    alert("Please enter \"Home Phone\".");
    theForm.Home_Phone.focus();
    return (false);
  }
  if (theForm.Cell_Phone.value == "")
  {
    alert("Please enter \"Cell Phone\".");
    theForm.Cell_Phone.focus();
    return (false);
  }
  if (theForm.Business_Phone.value == "")
  {
    alert("Please enter \"Business Phone\".");
    theForm.Business_Phone.focus();
    return (false);
  }
  if ((theForm.Please_Call[0].checked == false) && (theForm.Please_Call[1].checked == false) && (theForm.Please_Call[2].checked == false))
  {
    alert("Please enter \"Contact Selection\".");
    theForm.Please_Call[0].focus();
    return (false);
  }
  if (theForm.Best_Time_to_Call.value == "")
  {
    alert("Please enter \"Best Time To Call\".");
    theForm.Best_Time_to_Call.focus();
    return (false);
  }
  if (theForm.Complete_Email_Address.value == "")
  {
    alert("Please enter \"E-mail Address\".");
    theForm.Complete_Email_Address.focus();
    return (false);
  }
  if (theForm.Date_of_Birth.value == "")
  {
    alert("Please enter \"Birth Date\".");
    theForm.Date_of_Birth.focus();
    return (false);
  }
  if ((theForm.Marital_Status[0].checked == false) && (theForm.Marital_Status[1].checked == false))
  {
    alert("Please enter \"Marital Status\".");
    theForm.Marital_Status[0].focus();
    return (false);
  }
  if (theForm.Name_of_Spouse.value == "")
  {
    alert("Please enter \"Spouse Name\".");
    theForm.Name_of_Spouse.focus();
    return (false);
  }
  if (theForm.Ages_of_Children.value == "")
  {
    alert("Please enter \"Ages\".");
    theForm.Ages_of_Children.focus();
    return (false);
  }
  if (theForm.How_learned_about_KD.value == "")
  {
    alert("Please enter \"Learned About Information\".");
    theForm.How_learned_about_KD.focus();
    return (false);
  }
  if (theForm.Territory_Preferred.value == "")
  {
    alert("Please enter \"Territory\".");
    theForm.Territory_Preferred.focus();
    return (false);
  }
  if (theForm.Income_Self.value == "")
  {
    alert("Please enter \"Self Income\".");
    theForm.Income_Self.focus();
    return (false);
  }
  if (theForm.Income_Spouse_or_Other.value == "")
  {
    alert("Please enter \"Other Income\".");
    theForm.Income_Spouse_or_Other.focus();
    return (false);
  }
  if (theForm.Cash_to_Invest_in_KD.value == "")
  {
    alert("Please enter \"Investment Cash\".");
    theForm.Cash_to_Invest_in_KD.focus();
    return (false);
  }
  if (theForm.When_to_Start.value == "")
  {
    alert("Please enter \"Start Date\".");
    theForm.When_to_Start.focus();
    return (false);
  }
  if (theForm.Why_Good_Candidate.value == "")
  {
    alert("Please enter \"Good Candidate Reasons\".");
    theForm.Why_Good_Candidate.focus();
    return (false);
  }
  if (theForm.Employment_Summary.value == "")
  {
    alert("Please enter \"Employment Information\".");
    theForm.Employment_Summary.focus();
    return (false);
  }
  if ((theForm.Experience_with_Children[0].checked == false) && (theForm.Experience_with_Children[1].checked == false))
  {
    alert("Please enter \"Worked With Children Indication\".");
    theForm.Experience_with_Children[0].focus();
    return (false);
  }
  if ((theForm.Taken_Dance[0].checked == false) && (theForm.Taken_Dance[1].checked == false))
  {
    alert("Please enter \"Classes Indication\".");
    theForm.Taken_Dance[0].focus();
    return (false);
  }
/* THIS IS NOT NEEDED
  if (theForm.Comments.value == "")
  {
    alert("Please enter \"Comments\".");
    theForm.Comments.focus();
    return (false);
  }
*/
  return (true);
}


