<!--function getXMLHTTPRequest() {	try {		req = new XMLHttpRequest();	} catch(err1) {		try {			req = new ActiveXObject("Msxml2.XMLHTTP");		} catch (err2) {			try {				req = new ActiveXObject("Microsoft.XMLHTTP");			} catch (err3) {				req = false;			}		}	}	return req;}function useHttpResponse(http, element, callback) {	if (http != undefined) {		if (http.readyState == 4) {			if(http.status == 200) {				var elem = document.getElementById(element);				if(elem != null)				{					elem.innerHTML = http.responseText;					cleanup(element);				}										if (callback != null)					eval(callback);			}		}	}}var httpCollection = new Object();var httpHandlerCollection = new Object();//var http = getXMLHTTPRequest();var tempSpecial = "";function  getInfo(command, element,query,page, callback) {	var http = null;	try
	{		http = httpCollection[command];		if (!http)		{			http = getXMLHTTPRequest();			httpCollection[command] = http;		}				//SETUP QUERY		var myurl = page;		myRand = parseInt(Math.random()*999999999999999);		var modurl = myurl+"?"+query+"&rand="+myRand;		http.open("GET", modurl, true);		http.onreadystatechange = function () { useHttpResponse(http, element, callback) };				http.send(null);	}
	catch(e)
	{		//supress error		/*        alert (		  "ReadyState: " + http.readyState + "\r\n" +
          "Name: " + e.name + "\r\n" +
          "Number: " + e.number + "\r\n" +
          "Description: " + e.description
        );		*/
	}}///////////////////////function getStatus(command,element,query,page) {	try
	{		var http = httpCollection[command];		if (!http)		{			http = getXMLHTTPRequest();			httpCollection[command] = http;		}		//SETUP QUERY		var myurl = page;		myRand = parseInt(Math.random()*999999999999999);		var modurl = myurl+"?"+query+"&rand="+myRand;		http.open("GET", modurl, true);		http.onreadystatechange = function () { useHttpResponseStatus(http) };		http.send(null);	}
	catch(e)	{		//supress the error		/*        alert (		  "ReadyState: " + http.readyState + "\r\n" +
          "Name: " + e.name + "\r\n" +
          "Number: " + e.number + "\r\n" +
          "Description: " + e.description
        );		*/
	}}function useHttpResponseStatus(http) {	if (http != null) {		if (http.readyState == 4) {			if(http.status == 200) {				available = http.responseText;						}		}	}}///////////////////////function clearInfo(tempElement) {	var tags = document.getElementsByTagName('div');	for (var i = 0; i < tags.length; i++) {		if (tags[i].id == tempElement) {			tags[i].innerHTML = "";		}	}}//-->