// JavaScript Document
var mb_xmlhttp;
document.write("<span id='genMeestBezocht' name='genMeestBezocht'><img src='/images/loading/remembermilk_orange.gif' align='absmiddle'> Bezig met laden...</span>")
function mb_get(url, spanControl, js_loadfunctie) {
	mb_xmlhttp = false;
	// branch for native XMLHttpRequest object
	if(window.XMLHttpRequest) {
		try {
			mb_xmlhttp = new XMLHttpRequest();
		} catch(e) {
			mb_xmlhttp = false;
		}
		// branch for IE/Windows ActiveX version
	} 
	else if(window.ActiveXObject) {
		try {
			mb_xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch(e) {
			try {
				mb_xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch(e) {
				mb_xmlhttp = false;
			}
		}
	}
	if(mb_xmlhttp) {
		mb_xmlhttp.onreadystatechange = function() {
 			if (mb_xmlhttp.readyState==4) {
   				if (spanControl!="") document.getElementById(spanControl).innerHTML = mb_xmlhttp.responseText;
				if (js_loadfunctie!="") eval(js_loadfunctie);
  			}
		}
		mb_xmlhttp.open("GET", url, true);
		mb_xmlhttp.send("");
	}
}

mb_get("/xml_gets/s2u_meestgelezen.asp?d=" + d_id + "&p=" + p_id + "&w=" + w_id + "&t=" + t_id, "genMeestBezocht", "");
