function GetSite(num) 
{
	var site = new Array;
	site[0] = "http://arabstreet-hotels.directrooms-singapore.com/index.htm";
	site[1] = "http://chinatown-hotels.directrooms-singapore.com/index.htm";
	site[2] = "http://eastcoast-hotels.directrooms-singapore.com/index.htm";
	site[3] = "http://littleindia-hotels.directrooms-singapore.com/index.htm";
	site[4] = "http://marina-hotels.directrooms-singapore.com/index.htm";
	site[5] = "http://orchard-hotels.directrooms-singapore.com/index.htm";
	site[6] = "http://sentosa-hotels.directrooms-singapore.com/index.htm";
	return site[num];
}

function RegionSearch() {	

	if (document.hotelsearch.menu1.options[document.hotelsearch.menu1.selectedIndex].value != "")
		{	
		var siteindex = document.hotelsearch.menu1.options[document.hotelsearch.menu1.selectedIndex].value;
		
		var URL = GetSite(siteindex) ;
      window.open(URL,"","");
		//window.location.href = URL;

	}  else  alert ('Please select destination ! ');
}
