		function auswahl() {
		  date_string=document.veranstaltung.date.options[document.veranstaltung.date.options.selectedIndex].text;
		  date_string=date_string.replace(/ /,"_");
		  date_string=date_string.replace(/ /,"_");
		  url="http://new.heimat.de/culturebase/terminausgaben/siegburg/index.php3?land=1&lang=de&date="
		  + document.veranstaltung.date.options[document.veranstaltung.date.options.selectedIndex].value
		  + "&kateg=" + document.veranstaltung.kateg.options[document.veranstaltung.kateg.options.selectedIndex].value
		  //+ "&datumstring=" + date_string;
		  if (document.veranstaltung.oeffentl.value == "true") url = url + "&oeffentl=true";
		  window.location.href=url;
		  //parent.cb_body.location.href=url;
		}