function confirmDialog(aWindow,text, href) {
	if (confirm("Eintrag '"+text+"' wirklich löschen?")) {
		aWindow.location.href=href;
	};
}