

function NeuFenster(Side){
 MeinFenster = window.open(Side, "Zweitfenster", "menubar=no, resizable=yes, scrollbars=yes, width=1024, height=768");
 MeinFenster.focus();
}

function HelpWindow(Side){
 myWindow = window.open(Side, "Zweitfenster", "menubar=no, resizable=no, scrollbars=yes, width=600, height=400");
 myWindow.focus();
}

function InfoWindow(Side){
 myWindow = window.open(Side, "Zweitfenster", "menubar=no, resizable=no, scrollbars=yes, width=400, height=300");
 myWindow.focus();
}

function ImgUpload(Side){
 myWindow = window.open(Side, "Zweitfenster", "menubar=no, resizable=no, scrollbars=yes, width=400, height=300");
 myWindow.focus();
}

function Bestaetigung() {
 var x = window.confirm("Sind Sie sicher das Sie den Eintrag löschen wollen?");
 return x;
}