function abc() {
   //alert("function go");
   box = document.passionSelectorForm.passionSelector;
   destination = box.options[box.selectedIndex].value;
   // alert("destination=" + destination);
   if (destination) location.href = "/whotels/explore/passion/point/index.html?passion=" + destination;
   // alert("abc finish");
	SW.tools.Cookie.set("w_passion", destination);
   }


function changeTab(tabID){
   document.getElementById('destTab').className = "";
   document.getElementById('hotelsTab').className = "";

   document.getElementById('destTabMenu').style.display = "none";
   document.getElementById('hotelsTabMenu').style.display = "none";

   document.getElementById(tabID).className = "locked";
   document.getElementById(tabID+'Menu').style.display = "block";
   }
