<!--
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',email);
	
	if (adressat > 0 
	 && anrede   > 0 
	 && vorname  != "" 
	 && name     != "" 
	 && email    != "" 
	 && spamcode != "" 
	 && wert     == true){
		return true;
	}
	else{
		alert("Bitte fuellen 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;
	
	if (anrede   > 0 
	 && vorname  != "" 
	 && name     != "" 
	 && email    != "" 
	 && spamcode != "" ){
		if (check('d',email)){
			return true;
		}
		else{
			return false;
		}
	}
	else{
		alert("Bitte fuellen Sie alle Felder mit einem * aus !");
		return false;
	}
}

function pruefen_newsletter(sprache){
   
	vorname = window.document.mf.f_vorname.value;
	name    = window.document.mf.f_name.value;
	email   = window.document.mf.f_email.value;
	
	
	if (vorname  != "" 
	 && name     != "" 
	 && email    != "" ){
		if (check('d',email)){
			return true;
		}
		else{
			return false;
		}
	}
	else{
		alert("Bitte fuellen Sie alle Felder mit einem * aus !");
		return false;
	}
}

function pruefen_weiterempfehlen(sprache){
   
	vorname = window.document.mf.f_vornameS.value;
	name    = window.document.mf.f_nameS.value;
	email   = window.document.mf.f_emailS.value;
	vornameE = window.document.mf.f_vornameE.value;
	nameE    = window.document.mf.f_nameE.value;
	emailE   = window.document.mf.f_emailE.value;
	
	if (vorname  != "" 
	 && name     != "" 
	 && email    != "" 
	 && vornameE  != "" 
	 && nameE     != "" 
	 && emailE    != "" ){
		if (check('d',email)){
			return true;
		}
		else{
			return false;
		}
	}
	else{
		alert("Bitte fuellen Sie alle Felder mit einem * aus !");
		return false;
	}
}
//-->
