function hkHttp( obj, language, url){
	var xmlhttp = false;
	obj.innerHTML = 'ÕýÔÚ¼ÓÔØ...';
//	var _url = '/ajax/bdhttp.bd?o='+obj.id+'&l='+language+'&url='+escape( url);
	var _url = url;
	if (window.XMLHttpRequest){ // code for Mozilla, etc.
		xmlhttp = new XMLHttpRequest();
	}
	else if (window.ActiveXObject){ // code for IE
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	}
	else{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	if (xmlhttp)
	{
		xmlhttp.onreadystatechange = function(){
			if (4 == xmlhttp.readyState){
				obj.innerHTML = xmlhttp.responseText;
			}
		}
		xmlhttp.open( "GET",_url,true);
		xmlhttp.send();
	}
	return false;
}
