//加载已浏览城市
View_Left_Goto(Viewed_Destination_Loading_url);
function View_Left_Goto(folder_url){
	delete xmlhttp ;
	var xmlhttp;
	if (xmlhttp==null || typeof(xmlhttp)!="object"){
		try{
			xmlhttp= new ActiveXObject('Msxml2.XMLHTTP');
		}catch(e){
			try{
				xmlhttp= new ActiveXObject('Microsoft.XMLHTTP');
			}catch(e){
				try{
					xmlhttp= new XMLHttpRequest();
				}catch(e){}
			}
		}
	}
	xmlhttp.onreadystatechange=function(){
		if (4==xmlhttp.readyState){
			if (200==xmlhttp.status){
				var return_value=xmlhttp.responseText;
				if (return_value != null){
					document.getElementById('left_goto').innerHTML=return_value;
				}
			}
		delete xmlhttp ; 
		xmlhttp=null;
		CollectGarbage;
		}
	}
	xmlhttp.open("post", folder_url+"vietnam_left_goto_ajax.php", true);
	xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded;text/xml;charset=utf-8");
	xmlhttp.send("folder_url="+folder_url);
	CollectGarbage();
}