function getNewHttpObject() { var http_object;
	/*@cc_on
	@if (@_jscript_version >= 5)
		try {
			http_object = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			try {
				http_object = new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (E) {
				http_object = false;
			}
		}
	@else
		xmlhttp = http_object;
	@end @*/
if (!http_object && typeof XMLHttpRequest != 'undefined') {try{ http_object = new XMLHttpRequest();}catch (e){http_object = false;}}return http_object;}
function axah(url,elementContainer)
{var temp = document.getElementById(elementContainer).innerHTML;updateElement(elementContainer, '<div style="margin: auto; text-align: center;"><img src="/images/axah.gif" alt="Loading ..." title="" width="18" height="15"/></div>');var theHttpRequest = getNewHttpObject();theHttpRequest.onreadystatechange = function() {processAXAH(elementContainer);};theHttpRequest.open("GET", url); theHttpRequest.send(false);
function processAXAH(elementContainer)
{if (theHttpRequest.readyState == 4){ if(theHttpRequest.status == 200){updateElement(elementContainer, theHttpRequest.responseText);return true;}else{alert('Error 404: The file you have requested could not be found or the server may be too busy to process your request; please try again in a few seconds');return false;}}else return false;}}
function updateElement( elementContainer, textContent ){document.getElementById(elementContainer).innerHTML = textContent;}