function Process(sendUrl,goDiv,bLoad) {
	Proc(sendUrl,goDiv);
}

function Proc(turl,div){
	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.open("post",turl,true);
	xmlHttp.send('');
	xmlHttp.onreadystatechange = function(){
		if(xmlHttp.readyState == 4){
			if (document.getElementById(div)){
				document.getElementById(div).innerHTML = xmlHttp.responseText;
			}
			parseScript(xmlHttp.responseText);
		}
	}
}	
