var ajax = new sack();

function verstuur(){
	ajax.setVar("email", document.getElementById("email").value);
	ajax.setVar("phone", document.getElementById("phone").value);
	ajax.method = 'POST';
	ajax.requestFile = document.getElementById('jsUrl').value + "/ajax_inc_contactformulier_check.php";
	ajax.onCompletion = set_Verstuur;
	ajax.runAJAX();
}

function set_Verstuur() {
	if (ajax.responseStatus){
		eval(ajax.response);
		//alert('ok');
	}
}
