function News_Form_Validator(theForm)
{
  if (theForm.email.value == "")
  {
    alert("Please enter a email.");
    theForm.email.focus();
    return (false);
  }
  if (theForm.email.value.indexOf("@") == -1)
  {
    alert("Your e-mail is incorrect!");
    theForm.email.focus();
    return (false);
  }
  if (theForm.email.value.indexOf(".") == -1)
  {
    alert("Your e-mail is incorrect!");
    theForm.email.focus();
    return (false);
  }
  return (true);
}