try{
	xmlhttp=new XMLHttpRequest()
}catch(e){
	try{
		xmlhttp=new ActiveXObject("MSXML2.XMLHTTP")
	}catch(E){
		try{
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
		}catch(ee){
			xmlhttp=false
		}
	}
}

ajax_callBack=false

function _req(){
	if(xmlhttp.readyState==4){
		ajax_callBack(xmlhttp.responseText)
	}
}

function req(url,callBack){
	ajax_callBack=callBack
	xmlhttp.open("GET",url,true)
	xmlhttp.onreadystatechange=_req
	xmlhttp.send(null)
}