function LoadHotel(obj){
	var http = new getXMLHTTPRequest();
	var myurl = "../../hotelcontent/hotels/hotel.php";
	var datapath = "CityCode="+$("cboCityCode").value;
	datapath += "&Mode=citysearch";
	datapath += "&"+new Date().getTime();
	http.onreadystatechange = function() {if (http.readyState != 4) { return; }
		var hotelsearch = eval("("+http.responseText+")");
		loadselect(hotelsearch.MyLoad, $("cboHotelCode"),cboHotelCode);
	}
	http.open("POST", myurl, true);
	http.setRequestHeader('Content-Type','application/x-www-form-urlencoded');
	http.send(datapath);
}
function SearchOverview(){
	var txthotelname = $("cboHotelCode").options[$("cboHotelCode").selectedIndex].text.replace(/ /g,"-").toLowerCase();
	window.open("/"+txthotelname+"/overview.html","_self");
}
function SearchHotelReview(){
	var txthotelname = $("cboHotelReview").options[$("cboHotelReview").selectedIndex].text.replace(/ /g,"-").toLowerCase();
	window.open("/reviews/"+txthotelname+"-review-hotel.html","_self");
}
function OpenGoogleMap(){
	if(window.lyGoogleMap){
		window.lyGoogleMap.open('/googlemap.html?HotelName='+gmHotelName+'&Address='+gmAddress+'&ThumnailImgPath='+gmThumnailImgPath+'&Rating='+gmRating+'&Latitude='+gmLatitude+'&Longtitude='+gmLongtitude,'_self','width=380,height=300,resizable=no')
	}
}