// JavaScript Document
 <!--
function SEO_Form_Validator(theForm)
{


  
  if (theForm.name.value == "Ihr Name")
  {
    alert("Bitte geben Sie Ihren Namen in das Feld \"Name\" ein!");
    theForm.name.focus();
    return (false);
  }

  if (theForm.name.value.length < 1)
  {
    alert("Bitte prüfen Sie Ihr Name!");
    theForm.name.focus();
    return (false);
  }

  if (theForm.name.value.length > 55)
  {
    alert("Bitte prüfen Sie Ihr Name!");
    theForm.name.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz&#402;&#352;&#338;&#381;&#353;&#339;&#382;&#376;ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ-.,() \t\r\n\f";
  var checkStr = theForm.name.value;
  var allValid = true;
  var validGroups = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Bitte prüfen Sie Ihr Name! (keine Zahlen und Sonderzeichen bitte!)");
    theForm.name.focus();
    return (false);
  }

  if (theForm.email.value == "E-Mail")
  {
    alert("Bitte geben Sie Ihre E-Mail Adresse in das Feld \"E-Mail\" ein.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length < 6)
  {
    alert("Bitte geben Sie Ihre E-Mail Adresse in das Feld \"E-Mail\" ein.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length > 55)
  {
    alert("Bitte prüfen Sie Ihre E-Mail Adresse");
    theForm.email.focus();
    return (false);
  }
    if (theForm.webseite.value == "www.")
  {
    alert("Bitte geben Sie Ihre Webseiten- Adresse (URL) in das Feld \"http\" ein.");
    theForm.webseite.focus();
    return (false);
  }
  
  
  return (true);
}
//-->


