function Process(url,div,process) {
	var xmlHttp;
	try {
		xmlHttp = new XMLHttpRequest();
	} catch (e) {		
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert("Uw browser ondersteund geen ajax");
				return false;
			}
		}
	}
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			UseResponse(xmlHttp.responseText,div,process)
		}
	}
	
	xmlHttp.open("post",url,true);
	xmlHttp.send('');
	if (process == 1){
		Disable('/Moment.asp','100','100');
	}
}	

function UseResponse(result,div,process){
	if (div != ''){
		document.getElementById(div).innerHTML = result;
	}
	if (process == 1){
		Enable();
	}
}