function innerText4Ajax(targetID,url) {
	xmlHttp = GetXmlHttpObject();
	if (xmlHttp==null) {
		alert ('Browser does not support HTTP Request');
		return;
	}
	xmlHttp.onreadystatechange = function () {
		if (xmlHttp.readyState==4 || xmlHttp.readyState=='complete') {
			document.getElementById(targetID).innerHTML = xmlHttp.responseText;
		}
	};
	xmlHttp.open('GET',url,true);
	xmlHttp.send(null);
}
