// 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;
	}	
}

function addBookmark(title,url) 
{ 
	if (window.sidebar) { 
		window.sidebar.addPanel(title, url,""); 
	}else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}
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=" + Departure;
		}else
		{
			//document.getElementById("FH").checked = true;
			window.location = "http://flight.asiatravel.com/crs.flight/www/Flight.aspx?t=fh&cc=" + Departure;
		}
		
	}
}