function checkFields()
{
	window.name = 'inhoud';
	var str = "";
	var oms = "";
	var tot = "";

	if(document.info.Naam.value == "")
	    str += "Vul uw naam in\n";
	if(document.info.Adres.value == "")
	    str += "Vul uw adres in\n";
	if(document.info.Plaats.value == "")
	    str += "Vul uw woonplaats in\n";		
	if(document.info.Email.value == "")
	    str += "Vul uw e-mail adres in\n";
		//controle of email "@" bevat en een "." na de apestaat
    if (document.info.Email.value.length>0&&(document.info.Email.value.indexOf("@",0)==-1||document.info.Email.value.indexOf(".",0)==-1)) 
	 	str += "Vul uw e-mail adres correct in\n"	;

tot += str + oms;

	 if(tot == ""){
		  document.info.submit();  
	 }
	 else {
			alert(tot);
	 }

}
