function Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.WhoAreYou.selectedIndex < 0)
  {
    alert("Please select one of the \"Your main involvement with events\" options.");
    theForm.WhoAreYou.focus();
    return (false);
  }

  if (theForm.Telephone.value == "")
  {
    alert("Please enter a value for the \"Telephone\" field.");
    theForm.Telephone.focus();
    return (false);
  }

  if (theForm.County.selectedIndex < 0)
  {
    alert("Please select one of the \"County\" options.");
    theForm.County.focus();
    return (false);
  }

  if (theForm.WhichPlanner.selectedIndex < 0)
  {
    alert("Please select one of the \"Which planner to place article?\" options.");
    theForm.WhichPlanner.focus();
    return (false);
  }

  if (theForm.MyArticle.value == "")
  {
    alert("Please enter a value for the \"Paste or write your article in the box provided\" field.");
    theForm.MyArticle.focus();
    return (false);
  }
  return (true);
}
