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