function getBookingURL()
{
	return 'redirect.php?to=' + escape(
				 'http://www.lufthansa.com/online/portal/lh/de/booking?l=de' +
				 '&tripType=' + (document.forms.quickb.flugart[0].checked ? document.forms.quickb.flugart[0].value : document.forms.quickb.flugart[1].value) +
	       '&originName%5B0%5D=' + encodeURI(document.forms.quickb.von.value) +
	       '&originCode%5B0%5D=' + encodeURI(document.forms.quickb.von.value) +
	       '&outboundDate=' + document.forms.quickb.datum_von.value +
	       '&destinationName%5B0%5D=' + encodeURI(document.forms.quickb.nach.value) +
	       '&destinationCode%5B0%5D=' + encodeURI(document.forms.quickb.nach.value) +
	       '&inboundDate=' + document.forms.quickb.datum_bis.value +
	       '&searchType=FARE');
}

function addDay(someDate)
{
	var teile = someDate.split(".");

	date1 = new Date(teile[2],parseInt(teile[1]-1),(parseInt(teile[0])+1));

	return LZ(date1.getDate()) + "." + LZ(parseInt(date1.getMonth()+1)) + "." + date1.getFullYear();
}