if (typeof(showHotel) == 'undefined'){
	function showHotel(aHotelLink){
		var str_arr = aHotelLink.href.toString().split("/"); 
		var id = str_arr[str_arr.length - 1];
		str_arr = id.split("."); 
		id = str_arr[0];
		window.open(aHotelLink,  id, 'height=600,width=925,toolbar=yes,location=yes,scrollbars=yes,resizable=yes,top=1,left=1,status=yes');
		return false;
	}
}
