function checkSymposiumForm(){

	var t = '';

	
	if($('naam').value=='') t += '+ Vul aub uw naam in.\n';
	
	if($('adres').value=='') t += '+ Vul aub uw adres in.\n';
	
	if($('postcode').value=='') t += '+ Vul aub uw postcode in.\n';

	if($('plaats').value=='') t += '+ Vul aub uw woonplaats in.\n';

	
	if(t != ''){

		alert('U heeft niet alle verplichte velden ingevuld.\nU dient alle velden gemarkeerd met een * in te vullen.\n\n'+t);

		return false;

	}

		return true;
}