function sendTicketbestellen () {

	var von = document.fahrplan.REQ0JourneyStopsS0G.value;
	var nach = document.fahrplan.REQ0JourneyStopsZ0G.value;
	// var via = document.fahrplan.REQ0JourneyStops1.0G.value;
	// var via = document.fahrplan.elements[12].value;
	var via = document.fahrplan.elements["REQ0JourneyStops1.0G"].value;
	// 16.01.08 Auftrag IPS: Reaktivierung Datumsuebernahme
	var reisedatum = document.fahrplan.REQ0JourneyDate.value;
	reisedatum = reisedatum.substring(4,12);
	// 14.11.2008 Aktivierung Zeit
	var reisezeit = document.fahrplan.REQ0JourneyTime.value;
	
	document.fahrplan.action = "https://www.sbb.ch/mct/wi/shop/b2c/cmsArtikelBestellen.do?sprache=en&von=" + von + "&nach=" + nach + "&reisedatum=" + reisedatum + "&reisezeit=" + reisezeit + "&via=" + via;
	// document.fahrplan.action = "https://www.sbb.ch/mct/wi/shop/b2c/cmsArtikelBestellen.do?sprache=en&von=" + von + "&nach=" + nach + "&reisedatum=" + reisedatum + "&via=" + via;
	// document.fahrplan.action = "https://www.sbb.ch/mct/wi/shop/b2c/cmsArtikelBestellen.do?sprache=en&von=" + von + "&nach=" + nach + "&via=" + via;
	document.fahrplan.submit();
}