function neu(pic,xxx,yyy){ var temp = new Image(); temp.src = pic; var head = "Bildansicht<\/title><\/head><body leftmargin=0 marginheight=0 marginwidth=0 topmargin=0>"; var foot = "<\/body><\/html>"; var newWindow = window.open('#','headline','scrollbars=no,height='+xxx+'px,width='+yyy+'px'); with(newWindow.document){ open(); write(head+'<img src="'+pic+'" onClick="self.close()">'+foot); close(); } } function neu2(dieses){ newWindow=window.open(dieses, 'newWindow', 'width=400,height=600,toolbar=no,location=no,status=no,scrollbars=yes'); WinOpen = true; } function neu3(dieses){ newWindow=window.open(dieses, 'newWindow', 'width=600,height=450,toolbar=no,location=no,status=no,scrollbars=no'); WinOpen = true; } function wirklich_loeschen() { frage = confirm("Wollen Sie diesen Eintrag wirklich löschen ? \n Dieser Vorgang kann nicht rückgängig gemacht werden !!"); return frage; } function toggle( targetId ){ if (document.getElementById){ target = document.getElementById( targetId ); if (target.className == "toggle"){ target.className = ""; } else { target.className = "toggle"; } } }