function show_detail() {
	document.getElementById('kurs_detail').style.display = "inline";
}

function show_warenkorb(auswahl) {
	document.getElementById('kurs_anmeldung').style.display = "inline";
	document.getElementById('veranstaltung_id').selectedIndex = auswahl;
}

function deleteObjekt () {
  check = confirm('Wollen Sie wirklich löschen?');
  if (check == false) {
	document.DelreturnValue = false;
  }
  else {
	document.DelreturnValue = true;
  }
}