function createAJAXRequest(retrievalURL, responseFunction) {	//	The followeing line is for IE-Caching-Bug only	try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {};	//	End of special instruction for IE-Caching-Bug	document.getElementById("viewBody" + contentID).innerHTML = "<img src=\"/" + webDbName + "/pics/indicators/loadingContent.gif\" width=\"15\" height=\"15\" alt=\"\" />";	window.setTimeout("runAJAXRequest('"+retrievalURL+"', '"+responseFunction+"')", 800)}function runAJAXRequest(retrievalURL, responseFunction) {	//	The followeing line is for IE-Caching-Bug only	try { document.execCommand("BackgroundImageCache", false, true); } catch(err) {};	//	End of special instruction for IE-Caching-Bug	if (window.ActiveXObject) {		ajaxReq = new ActiveXObject("Microsoft.XMLHTTP");	} else if (window.XMLHttpRequest) {		ajaxReq = new XMLHttpRequest();	}	ajaxReq.open("GET", retrievalURL, true);	ajaxReq.onreadystatechange = function() {		if(ajaxReq.readyState==4 && ajaxReq.status==200) {			eval(responseFunction+"()");		}	};	ajaxReq.send(null);}
