function checkform()
{
  if (document.Anfrageformular.Nachricht.value.length <4)
  {
	document.Anfrageformular.Nachricht.focus();
   	alert("Was wollen Sie uns mitteilen?");
    	return (false);
  } 
 
  if (document.Anfrageformular.Name.value.length <3)
  {  
	document.Anfrageformular.Name.focus();
   	alert("Geben Sie bitte Ihren Namen ein.");
    	return (false);
  }

  if (document.Anfrageformular.email.value.length <7)
  {
	document.Anfrageformular.email.focus();
   	alert("Geben Sie bitte Ihre email-Adresse ein.");
    	return (false);
  } 

   if (document.Anfrageformular.email.value.indexOf("@")==-1)
   {
    alert("Geben Sie bitte eine gültige email-Adresse ein.");
    document.Anfrageformular.email.focus();
    return (false);
   }

   if (document.Anfrageformular.email.value.indexOf(".")==-1)
   {
    alert("Geben Sie bitte eine gültige email-Adresse ein.");
    document.Anfrageformular.email.focus();
    return (false);
   } 



  document.Anfrageformular.action="/scripts/perl/kontakt-mail.pl";
  document.Anfrageformular.method="post";
  document.Anfrageformular.submit();

}
