            function PopUp(url,hoehe,breite) {
            nleft = (screen.width-breite)/2;
            ntop  = (screen.height-hoehe)/2;
            var PopUp = window.open(url,"popup","height=150"
                                              +",width=220"
                                              +",top="+ ntop
                                              +",left="+ nleft
                                              +",resizeable=no,"
                                              +",location=no,"
                                              +",menubar=no,"
                                              +",status=no,"
                                              +",scrollbars=no,"
                                              +",toolbar=no");
            PopUp.focus();
    }


