function chkFormularKontakt()
{
if(document.KONTAKT.Name.value == "")  {
alert("Bitte geben Sie einen Wert in das Feld Name ein!");
document.KONTAKT.Name.focus();
return false;
}


var add = 0;
  	var point = 0;
  	var checkStr = document.KONTAKT.email.value
  	var allValid = true;
  	for (i = 0;  i < checkStr.length;  i++){
		if (checkStr.charAt(i)=="@"){
			add=1;
		}
		if (checkStr.charAt(i)=="."){
			point=1;
		}
	}
    if (add!=1 || point!=1){
      	allValid = false;
    }
  
  	if (!allValid){
		alert("Bitte geben Sie eine korrekte E-Mail Adresse ein!");
		document.KONTAKT.email.focus();
		return (false);
  	}

return(true); }

