function check()
{
 if (commentForm.submitter.value == "")
 {
  alert("Please enter your name (anonymous is acceptable if you wish to remain anonymous).");
  return false;
 }
 if (commentForm.theText.value == "")
 {
  alert("Please enter your comment(s), it is blank.");
  return false;
 }
 return true;
}

