function newWin(url,w,h) {
            props = 'width='+w+',height='+h;
            myWin = window.open(url, 'Fenster', props);
              myWin.focus();
        }
