
function valideer(){
	$("#commentForm").validate()
	
	if($("#commentForm").valid()){
		$.post("formulierversturen.php",$("#commentForm").serialize(),function (data) 
							{
								$('#tekstblok').html(data); 
							});
		return true;
	} else {
		return false;
	}
}
