function CheckBericht() {
	if ($("#naam").val().length == 0) {
		alert("Je hebt je naam niet ingevuld.");
		$("#naam").focus();
		return false;
	}
	if ($("#bericht").val().length == 0) {
		alert("Je hebt geen bericht ingevuld.");
		$("#bericht").focus();
		return false;
	}
	
	return true;
}