// JavaScript Document

function verwerkForm() {
 if (xmlhttp.readyState==4) {
   document.getElementById("nwsbrf_form").innerHTML = xmlhttp.responseText;
 }
}
function sendForm(){
	
	 if (xmlhttp) { 
	 	naam_nws = document.getElementById("naam").value;
		mail_nws = document.getElementById("mail").value;
  		xmlhttp.open("GET", "/modules/includes/mail_nwsbrf/sendform_nws.php?n="+naam_nws+"&m="+mail_nws, true);
		xmlhttp.onreadystatechange=verwerkForm
  		xmlhttp.send(null)
 }
}