function controleerReactieContact() {
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	var Msg = "De volgende velden zijn verplicht \n";
	
	if (document.form_contact.Naam.value.length == 0) {
		document.form_contact.Naam.style.border = "1px solid red";			
		Msg += "Naam \n";
		
	} else {
		document.form_contact.Naam.style.border = " 1px solid #C0C0C0";
	}
	
	if (!filter.test(document.form_contact.Email.value)){
		document.form_contact.Email.style.border = "1px solid red";
		Msg += "Geldig Emailadres \n";
		
	} else {
		document.form_contact.Email.style.border = "1px solid #C0C0C0";
	}
	
	if (document.form_contact.Tekst.value.length == 0) {
		document.form_contact.Tekst.style.border = "1px solid red";
		Msg += "Bericht tekst \n";
	} else {
		document.form_contact.Tekst.style.border = "1px solid #C0C0C0";
	}
	if (document.form_contact.empty_x1.value.length == 0) {
		if (Msg == "De volgende velden zijn verplicht \n") {
			document.form_contact.submit();
		} else {
			alert(Msg);
		}
	} else {
		alert("Er is sprake van een mogelijke spam aanval. Ververs de pagina en probeer het nogmaals.");
	}
}
