function check()
{
  var pattern=/^[\w-\.]+@[\w-\.]+\.[a-zA-Z]{2,6}$/;
  if ((pattern.test(document.sendform.email.value))==false)
  {
    document.sendform.email.focus();
    document.sendform.email.select();
    alert ("Bitte geben Sie eine gültige eMail-Adresse ein.");
    return false;
  }
  else
  {
    document.sendform.method="post";
    document.sendform.action="http://www.web-2-date.de/formgateway/";

    document.sendform.submit;
    return true;
  }
}
