function ValidateTheForm(MailingListForm)
{
	if (document.MailingListForm.email.value == "")
	{
   		alert("Please enter an email address");
   		MailingListForm.email.focus();
   		return (false);
 	}
	
	if (document.MailingListForm.email.value != "")
	{
	//LOOK FOR @ CHARACTER
  	if ((document.MailingListForm.email.value).indexOf('@') == -1 )
		{
	   		alert("Please enter a valid email address");
	   		MailingListForm.email.focus();
	   		return(false);
  		}
	}  		
 	return (true); 	
}