function check_inschrijf1(){
	var str = "";

	if (document.inschrijf1.voorletters.value == "" ) {
		str = str + " voorletters \n";
	}
	if (document.inschrijf1.aanhef[0].checked === false &&  document.inschrijf1.aanhef[1].checked === false ) {
		str = str + " dhr / mevr \n";
	}
	if (document.inschrijf1.achternaam.value == "" ) {
		str = str + " Achternaam \n";
	}	

	if (document.inschrijf1.telefoon.value == "" ) {
		str = str + " Telefoon\n";
	}	
	if (document.inschrijf1.functie.value == "" ) {
		str = str + " Functie\n";
	}	
	if (document.inschrijf1.organisatie.value == "" ) {
		str = str + " Organisatie\n";
	}	
	if (document.inschrijf1.adres.value == "" ) {
		str = str + " Werkadres \n";
	}		

	if (document.inschrijf1.postcode.value == "" ) {
		str = str + " Postcode \n";
	}		

	if (document.inschrijf1.plaats.value == "" ) {
		str = str + " Plaats \n";
	}	
	
	if (document.inschrijf1.telefoon.value == "" ) {
		str = str + " Telefoon \n";
	}	
	
	if (document.inschrijf1.email.value=="") {
		str = str + " E-mail\n";
	}else if ( document.inschrijf1.email.value.length > 0 && ( document.inschrijf1.email.value.indexOf("@",0) == -1 || document.inschrijf1.email.value.indexOf(".",0) == -1 ) ) {
			str += " een geldig email \n"	;
	}
	
	if ( document.inschrijf1.lid_lkpz[0].checked === false && document.inschrijf1.lid_lkpz[1].checked === false ) {
		str += " Aangeven of u lid wilt worden of reeds lid bent\n";
	}
	
	if (document.inschrijf1.akkoord.checked === false ) {
		str = str + " Akkoord met de voorwaarden \n";
	}	
	 if(str == ""){
		  document.inschrijf1.submit();
	 }
	 else {
			alert("Vul de volgende velden in :\n" + str);
	 }
}

