function check() {

if(document.eintragen.nameeintragen.value == "" )  
   {
   alert("Sie haben vergessen Ihre Namen anzugeben!");
   document.eintragen.nameeintragen.focus();
   return false;
	}

	if(document.eintragen.maileintragen.value == "" ||
   document.eintragen.maileintragen.value.indexOf('@', 0) == -1 ||
   document.eintragen.maileintragen.value.indexOf(' ', 0) != -1 ||
   document.eintragen.maileintragen.value.indexOf('.', 0) == -1 ||
   document.eintragen.maileintragen.value.indexOf('http.', 0) != -1 ||
   document.eintragen.maileintragen.value.indexOf('http:', 0) != -1 ||
   document.eintragen.maileintragen.value.indexOf('www.', 0) != -1)  
   {
   alert("Bitte tragen Sie Ihre E-Mail-Adresse ein!\nSie wurde nicht korrekt geschrieben.");
   document.eintragen.maileintragen.focus();
   return false;
	}
}

function check2() {

if(document.austragen.nameaustragen.value == "" )  
   {
   alert("Sie haben vergessen Ihre Namen anzugeben!");
   document.austragen.nameaustragen.focus();
   return false;
	}

	if(document.austragen.mailaustragen.value == "" ||
   document.austragen.mailaustragen.value.indexOf('@', 0) == -1 ||
   document.austragen.mailaustragen.value.indexOf(' ', 0) != -1 ||
   document.austragen.mailaustragen.value.indexOf('.', 0) == -1 ||
   document.austragen.mailaustragen.value.indexOf('http.', 0) != -1 ||
   document.austragen.mailaustragen.value.indexOf('http:', 0) != -1 ||
   document.austragen.mailaustragen.value.indexOf('www.', 0) != -1)  
   {
   alert("Bitte tragen Sie Ihre E-Mail-Adresse ein!\nSie wurde nicht korrekt geschrieben.");
   document.austragen.mailaustragen.focus();
   return false;
	}
}
