function Validate(theForm)
{

if (theForm.email.value == "")
{
alert("Please enter your E-MAIL address.");
theForm.email.focus();
return (false);
}

return (true);
}
