function xxx(str)
  	{
    		result = true;
    		firstchar = str.charAt(0);
    		for ( var i=0; i < str.length; i++ )
    		{
      			if ( str.charAt(i) != firstchar )
        		{ result = false }
    		}
    		return result;
  	}

	function chkform()
	{

		var name = document.forms[0].Name.value;
		if ( (name.length < 3) || xxx(name) )
		{
			alert("Bitte geben Sie Ihren Namen an.");
			document.forms[0].Name.focus();
			return;
      		}
	
	
		var email = document.forms[0].Email.value;
		if ( (email.length < 6) || (email.indexOf('@') < 1) || (email.indexOf('.') == -1 ) )
		{
			alert("Bitte geben Sie eine gültige E-Mail-Adresse an.");
			document.forms[0].Email.focus();
			return;
		}
		

		document.forms[0].submit();
}