
var Today="";
var change7="";
var change14="";

function goTo(loc) {
	window.location.href = loc;
}

function commonTemplate(item) {
	return "<option value='" + item.Value + "'>" + item.Text + "</option>";
};

function commonMatch(selectedValue) {
	return this.When == selectedValue;
};

$(document).ready(function() {
	$("#OneWay").click(function(){
	$('#return').hide();
	});
	$("#RoundTrip").click(function(){
	$('#return').show();
	});
	$("#fmChina").click(function(){
	$('#fmChinaDiv').show();
	$('#fmHongKongDiv,#fmInternationalDiv').hide();
	$('#fmChinaBox,#fmCountryBox,#fmHongKongBox,#fmInternationalBox').val('');
	$('#fmChinaBox,#fmHongKongBox,#fmInternationalBox').empty();
	$('#fmChinaBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpEN&mytemplate=listArpt&Type=1');
	});
	$("#fmHongKong").click(function(){
	$('#fmHongKongDiv').show();
	$('#fmChinaDiv,#fmInternationalDiv').hide();
	$('#fmChinaBox,#fmCountryBox,#fmHongKongBox,#fmInternationalBox').val('');
	$('#fmChinaBox,#fmHongKongBox,#fmInternationalBox').empty();
	$('#fmHongKongBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpEN&mytemplate=listArpt&Type=2');
	});
	$("#fmInternational").click(function(){
	$('#fmInternationalDiv').show();
	$('#fmChinaDiv,#fmHongKongDiv').hide();
	$('#fmChinaBox,#fmHongKongBox').val('');
	$('#fmChinaBox,#fmHongKongBox,#fmInternationalBox').empty();
	$('#fmInternationalBox').append("<option value='' selected='true'>--- Select ---</option>");
	});
	$("#toChina").click(function(){
	$('#toChinaDiv').show();
	$('#toHongKongDiv,#toInternationalDiv').hide();
	$('#toHongKongBox,#toCountryBox,#toInternationalBox').val('');
	$('#toChinaBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpEN&mytemplate=listArpt&Type=1');
	$('#toInternationalBox').empty();
	});
	$("#toHongKong").click(function(){
	$('#toHongKongDiv').show();
	$('#toChinaDiv,#toInternationalDiv').hide();
	$('#toChinaBox,#toCountryBox,#toInternationalBox').val('');
	$('#toHongKongBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpEN&mytemplate=listArpt&Type=2');
	$('#toInternationalBox').empty();
	});
	$("#toInternational").click(function(){
	$('#toInternationalDiv').show();
	$('#toChinaDiv,#toHongKongDiv').hide();
	$('#toChinaBox,#toHongKongBox').val('');
	$('#toInternationalBox').empty();
	$('#toInternationalBox').append("<option value='' selected='true'>--- Select ---</option>");
	});

	$("#fmInternationalBox").cascade("#fmCountryBox",{
	ajax: {url: '/en/lib/data/data-INTL.html'},
	template: commonTemplate,
	match: commonMatch
	})
	.bind("loaded.cascade",function(e,target) { 
//	$(this).prepend("<option value='' selected='true'>--- Select ---</option>");
	$(this).find("option:first")[0].selected = true;
	});

	$("#toInternationalBox").cascade("#toCountryBox",{
	ajax: {url: '/en/lib/data/data-INTL.html'},
	template: commonTemplate,
	match: commonMatch
	})
	.bind("loaded.cascade",function(e,target) { 
//	$(this).prepend("<option value='' selected='true'>--- Select ---</option>");
	$(this).find("option:first")[0].selected = true;
	});
});

