function degrawin(url,scroll,name){
                width=800;
                height=600;
                windowName=" + name +";
                tpop_bildschirmx = screen.availWidth;
                tpop_bildschirmy = screen.availHeight;
                tpop_startx = Math.round(tpop_bildschirmx / 2) - (800/ 2);
                tpop_starty = Math.round(tpop_bildschirmy / 2) - (600/ 2);
                winFeatures= "height=" + height + ",width=" + width + ",resizable=no,toolbar=no,scrollbars=" + scroll + ",status=no,menubar=no";
                Fenster = window.open(url, windowName, winFeatures);
                Fenster.moveTo(tpop_startx,tpop_starty);
                Fenster.focus();
}
