function Validator(theForm)
{

  if (theForm.question.value == "")
  {
    alert("Please enter a value for the \"question\" field.");
    theForm.question.focus();
    return (false);
  }

  if (theForm.name_of.value == "")
  {
    alert("Please enter a value for the \"name_of\" field.");
    theForm.name_of.focus();
    return (false);
  }

  if (theForm.name_of.value.length > 100)
  {
    alert("Please enter at most 100 characters in the \"name_of\" field.");
    theForm.name_of.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length > 100)
  {
    alert("Please enter at most 100 characters in the \"email\" field.");
    theForm.email.focus();
    return (false);
  }


  return (true);
}