function CheckInput() {
	if((document.form1.name.value == "") || (document.form1.name.value == "dein Name")) // prüft, ob etwas im Feld name steht
		{
		alert("Wie, kein Name???");
		document.form1.name.focus();
     	return false;
		}
	if((document.form1.email.value == "") || (document.form1.email.value == "deine E-Mail")) // prüft, ob etwas im Feld email steht
		{
		alert("Ohne E-Mail-Adresse läuft hier nix :o)");
		document.form1.email.focus();
		return false;
		}
	if(document.form1.kommentar.value == "") // prüft, ob etwas im Feld kommentar steht
		{
		alert("Was ist nun mit dem Kommentar???");
		document.form1.kommentar.focus();
		return false;
		}
	}

function popup(breite, hoehe, ziel){
	winpopup = window.open(ziel,"Fenster1","width="+breite+",height="+hoehe+",toolbar=no,locationbar=no,directories=no,scrollbars=yes,scrolling=yes,status=no,menubar=yes,resizable=yes");
	//winpopup.resizeTo(breite,hoehe);
	self.focus;
}
