function loadXMLToId(id, url) {
	document.getElementById(id).innerHTML="<img src=\"/domcfg.nsf/activityanimation.gif\">";
	if (window.XMLHttpRequest) {
		// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	} else {
		// code for IE6, IE5
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function() {
		if(xmlhttp.readyState==4 && xmlhttp.status==200) {
			document.getElementById(id).innerHTML=xmlhttp.responseText
		}
	}
	// Append random ID parm to avoid caching
	url = url + "&id=" + String(Math.floor(Math.random()*999999999));
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
	if (typeof(xmlhttp.responseText)=="unknown") {
		document.getElementById(id).innerHTML="";
	} else {
		document.getElementById(id).innerHTML=xmlhttp.responseText;
	}
}