function FensterOeffnen(x) 
{
  var urlzusatz;
	urlzusatz = "zusatzinfo.php?id=" + x ;
	neuesFenster = open (urlzusatz, "anzeigeFenster","height=200,width=300,scrollbars=yes,resizable=yes");
}
	
function confirm_organ_erase(del) 
{
	if(confirm("Veranstalter und alle dazugehörigen Veranstaltungen und Nutzer löschen???")){
		document.location.href="admin-ctl.php?AKTION=ORGAN_DEL&odel=" + del;
	}
}

function confirm_erase(id) 
{
	if(confirm("Veranstaltung wirklich löschen???")){
		document.location.href="events-ctl.php?delete=1&id=" + id;
	}
}

function confirm_su_erase(su) 
{
	if(confirm("Administrator \"" + su + "\" löschen???")){
		document.location.href="admin-ctl.php?AKTION=SU&del=" + su;
	}
}

