function appvalidator(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.How_learned_about_KD.value == "")
  {
    alert("Please enter \"Learned About Information\".");
    theForm.How_learned_about_KD.focus();
    return (false);
  }
  if (theForm.Prefer_New_Franch.value == "")
  {
    alert("Please enter \"New Franchise\".");
    theForm.Prefer_New_Franch.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);
  }
  /* THIS IS NOT NEEDED
  if (theForm.Comments.value == "")
  {
    alert("Please enter \"Comments\".");
    theForm.Comments.focus();
    return (false);
  }
*/
  return (true);
}


