/*---------------------------------Start Myers Network Tag----------------------------------

*********************************************************
* DO NOT DELETE OR EDIT ANY OF THE DATA WITHIN THE TAG  *
*   IT CONTAINS REQUIRED INFORMATION THE SERVER NEEDS   *
*********************************************************

File Name: newsletter.js
Created by: Everett S. Myers II
Licensed to: Myers Network
Base Program Code: STD01 ver 1.0
Last Error Checked: 06/24/08 1001 ESM0101

------------------------------------End Myers Network Tag-----------------------------------*/

function Newsletter_JoinForm_Validator(theForm)
{
  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length > 255)
  {
    alert("Please enter at most 255 characters in the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}