function checkcontact(){
	if(document.getElementById('inp_email').value==""){
		alert("Gelieve minstens uw e-mail adres in te vullen");
		return false;
	}
}

function validateReactie(){
	if(document.getElementById("naam").value=="" || document.getElementById("tekst").value==""){
		alert("Gelieve uw naam en uw reactie in te vullen.");
		return false;
	}else{
		return true;
	}
}
