<!--
function pruefen(){
    adressat= parseInt(window.document.mf.f_adressat.selectedIndex);
	anrede  = parseInt(window.document.mf.f_anrede.selectedIndex);
	vorname = window.document.mf.f_vname.value;
	name    = window.document.mf.f_name.value;
	email   = window.document.mf.f_email.value;
	spamcode   = window.document.mf.f_spamcode.value;
	wert    = check('d',window.document.mf.f_email);
	
	if (adressat > 0 
	 && anrede   > 0 
	 && vorname  != "" 
	 && name     != "" 
	 && email    != "" 
	 && spamcode != "" 
	 && wert     == true){
		return true;
	}
	else{
		alert("Bitte f\üllen Sie alle Felder mit einem * aus !");
		return false;
	}
}
function pruefen_seminar(){
   
	anrede  = parseInt(window.document.mf.f_anrede.selectedIndex);
	vorname = window.document.mf.f_vname.value;
	name    = window.document.mf.f_name.value;
	email   = window.document.mf.f_email.value;
	spamcode   = window.document.mf.f_spamcode.value;
	wert    = check('d',window.document.mf.f_email);
	
	if (anrede   > 0 
	 && vorname  != "" 
	 && name     != "" 
	 && email    != "" 
	 && spamcode != "" 
	 && wert     == true){
		return true;
	}
	else{
		alert("Bitte f\üllen Sie alle Felder mit einem * aus !");
		return false;
	}
}
//-->
