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

