<!-- Diese Anwendung stammt von www.modus-dancing.de

var browser = new Object();
    browser.midres = (screen.width <= 800);
    browser.highres = (screen.width > 800);

function ExtraWin(theURL,winName,win_width,win_height)
    {
    var win=window.open(theURL,winName,"width="+(win_width)+
    ",height="+(win_height)+",scrollbars=1");
    win.moveTo(screen.width-262,(screen.height-screen.height+30));
    win.focus();
    }

function PopWin1(theURL,winName,win_width,win_height)
    {
    var win=window.open(theURL,winName,"width="+(win_width)+
    ",height="+(win_height)+
    ",scrollbars=1,resizable=1,left=30,top=30");
    win.setTimeout("window.close()",90000);
    }
//-->
