function check(theForm)
{

  if (theForm.Email.value == "")
  {
    alert("Please enter your e-mail address");
    theForm.Email.focus();
    return (false);
  }



else

return true;
}
