function GetMobiles(datum) {
	document.getElementById('loading').style.display = 'block';
	var ToolId = document.getElementById('ToolId').value;
	var Div = "AjaxSpot";
	sendRequest("AjaxLaadTool.php?Id=" + ToolId +"&datum="+datum, Div);
}

function GetMobiles2(datum) {
	document.getElementById('loading').style.display = 'block';
	var ToolId = document.getElementById('ToolId').value;
	var Div = "AjaxSpot";
	sendRequest("../AjaxLaadTool.php?Id=" + ToolId +"&datum="+datum, Div);
}


function controleerReactie() {
	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.naam.value.length == 0) {
		Msg += "Naam \n";
	}
	
	if (!filter.test(document.form.email.value)){
		Msg += "Geldig Emailadres \n";
	} 
	
	if (document.form.titel.value.length == 0) {
		Msg += "Titel \n";
	}
	
	if (document.form.tekst.value.length == 0) {
		Msg += "Bericht tekst \n";
	}
	
	
	
	if (Msg == "De volgende velden zijn verplicht \n") {
		document.form.submit();
	} else {
		alert(Msg);
	}
}