var xmlC = null;
function xmlConn(){
	var con=null;
	try{
		con = new ActiveXObject("Msxml2.XMLHTTP");
	}catch(err){
		try{
			con = new ActiveXObject("Microsoft.XMLHTTP");
		}catch(err2){
			con = null;
		}
	}
	if(!con && typeof XMLHttpRequest != "undefined"){
		con = new XMLHttpRequest();
	}
	return con
}
function xmlGet(m,u,handler){
	if(xmlC && xmlC.readyState != 0){
		xmlC.abort();
	}
	xmlC = xmlConn();
	if(xmlC){
		var dt = new Date();
		xmlC.open("GET","proxy.asp?m=" + m + "&u=" + u.split("=").join("|") + "&dt=" + dt.getTime(),true);
		xmlC.onreadystatechange = function(){
			if(xmlC.readyState == 4 && xmlC.responseText){
			//	alert(xmlC.responseText);
				eval('(' + xmlC.responseText + ')');
			}
		}
		xmlC.send(null);
	}else{
		alert("Your browser is not compatable with this page :-(\n\nEither:\n1) Update Internet Explorer\n2) Download Firefox (getfirefox.com)");
	}
}
function getID(myID){return document.getElementById(myID)}