/*PopUpFenster*/
        function PopUpFenster(url,framename,width,height,xpos,ypos) {
                if ( navigator.appName == "Netscape" ) {
                        width = width + 14;
                        height = height + 14;
                        var attributes =  "menubar=0,toolbar=0,status=0,scrollbars=1,resizable=1,width=" + width + ",height=" + height + ",screenX=" + xpos + ",screenY=" + ypos +",left=" + xpos + ",top=" + ypos;
                        var showpic = window.open(url,framename, attributes);
                } else {
                        width = width + 14;
                        height = height + 14
                        var attributes = "menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height + ",screenX=" + xpos + ",screenY=" + ypos +",left=" + xpos + ",top=" + ypos;
                        var showpic = window.open(url,framename, attributes);
                }
        }