// JavaScript Document
	function view_visa(obj){
		if(obj.value!=""){
			window.open("visa_info.php?n_id="+obj.value);
		}
	}
	function map2(mdd){
		//document.location.href="province_mdd-"+encodeURI(mdd)+".shtml";
		//document.location.href="country_mdd-"+encodeURI(mdd)+".shtml";
		//getIdByMdd函数由 util.php中的createMddIdDicJs生成。
		document.location.href="province_mdd-"+getIdByMdd(mdd)+".shtml";
	}
	function mapTo(mdd){
		//document.location.href="province.php?mdd="+encodeURI(mdd);
		//document.location.href="province_mdd-"+encodeURI(mdd)+".shtml";
		//getIdByMdd函数由 util.php中的createMddIdDicJs生成。
		document.location.href="province_mdd-"+getIdByMdd(mdd)+".shtml";
	}
