// JavaScript Document
function formhandlist1()
{
	if (document.asiatravel2.myselect.options[document.asiatravel2.myselect.selectedIndex].value != '0')
	{
		var URL = document.asiatravel2.myselect.options[document.asiatravel2.myselect.selectedIndex].value; window.location.href=URL;
	}	
}

/* Modified to support Opera */
function bookmarksite(title,url){
if (window.sidebar) // firefox
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie
	window.external.AddFavorite(url, title);
}


function showMe(obj)
{

	var divHotel = document.getElementById("HotelSearch");
	//var divFlight = document.getElementById("FlightSearch");
							
	if (obj == 0)
	{
		//divHotel.style.display = '';
		//divFlight.style.display = 'none';
	}
	else
	{
		//divHotel.style.display = '';
		//divFlight.style.display = 'none';
		
		if (obj == 1)
		{
			//document.getElementById("FH").checked = false;
			window.location = "http://flight.asiatravel.com/crs.flight/www/Flight.aspx?cc=SIN"//" + Departure;
		}else
		{
			//document.getElementById("FH").checked = true;
			window.location = "http://flight.asiatravel.com/crs.flight/www/Flight.aspx?t=fh&cc=SIN"//" + Departure;
		}
		
	}
}
