function neu(pic,xxx,yyy){
var temp = new Image();
temp.src = pic;
var head = "
Bildansicht<\/title><\/head>";
var foot = "<\/body><\/html>";
var newWindow = window.open('#','headline','scrollbars=no,height='+xxx+'px,width='+yyy+'px');
with(newWindow.document){
open();
write(head+'
'+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";
}
}
}