function id(elem){
  return document.getElementById(elem);
}

/*Kontaktformular-Kontrolle*/
function check() {
 var Name, VName, Mail, affe, punkt, i, antwort, text;
 Name=document.kontakt.Name.value;
 VName=document.kontakt.VName.value;
 Mail=document.kontakt.Mail.value;
 text=document.kontakt.text.value;
 affe=0;
 punkt=0;
 for (i=0; i<Mail.length; i++) {
  if (Mail.charAt(i)=="@") {
	 affe=1;
	 }
	if (Mail.charAt(i)==".") {
	 punkt=1;
	 }
 }
 if (Name=="" || VName=="" || affe!=1 || punkt!=1 || Mail.length<7) {
 alert("Bitte geben Sie Ihren vollständigen Namen und ihre E-Mail-Adresse korrekt an!");
 return false;
 }
 if (text=="")
 {alert("Sie haben ja garnichts geschrieben?!");
 return false;
 }
 antwort=confirm("Sind Sie sicher, dass Sie das Formular abschicken wollen??");
 return antwort;
}

/*Hover-Links*/
function runter(obj){id(obj).src='bilder/link_hole.jpg';}
function rauf(obj) {id(obj).src='bilder/link_active.jpg';}


/*EAÄ-Fenster öffnen*/
function fensterea (session){
	window.open("eigenedaten.php?"+session,"EAÄ","height=470,width=370,top=20,left=100,scrollbars=yes");
									 }
									 
  /* Vorhang */
function vorhang_zu(){
	id('Vorhang').style.visibility = "visible";
}
function vorhang_auf() {
	id('Vorhang').style.visibility = "hidden";
}

