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