
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() {
	$("#OneWayTN").click(function(){
	$('#returnTN').hide();
	});
	$("#RoundTripTN").click(function(){
	$('#returnTN').show();
	});
	$("#toTNChina").click(function(){
	$('#toTNChinaDiv').show();
	$('#toTNHongKongDiv,#toTNInternationalDiv').hide();
	$('#toTNHongKongBox,#toTNCountryBox,#toTNInternationalBox').val('');
	$('#toTNChinaBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpDE&mytemplate=listArpt&Type=1');
	$('#toTNInternationalBox').empty();
	});
	$("#toTNHongKong").click(function(){
	$('#toTNHongKongDiv').show();
	$('#toTNChinaDiv,#toTNInternationalDiv').hide();
	$('#toTNChinaBox,#toTNCountryBox,#toTNInternationalBox').val('');
	$('#toTNHongKongBox').load('/cgi-bin/csvread.cgi?mydatabase=listAirpDE&mytemplate=listArpt&Type=2');
	$('#toTNInternationalBox').empty();
	});
	$("#toTNInternational").click(function(){
	$('#toTNInternationalDiv').show();
	$('#toTNChinaDiv,#toTNHongKongDiv').hide();
	$('#toTNChinaBox,#toTNHongKongBox').val('');
	$('#toTNInternationalBox').empty();
	$('#toTNInternationalBox').append("<option value='' selected='true'>--- auswählen ---</option>");
	});

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

