function Validator(newsletterForm)
{

			  if (newsletterForm.email.value == '' || newsletterForm.email.value == null)
			  {
				alert("The email address must be filled in correctly to send the form. Please"
				+" check the prefix and '@' sign and try again.");
				newsletterForm.email.focus();
				return (false);
			  }

}
