function newWindow(){

        var datei, w, h, settings;

        datei = newWindow.arguments[0];

        if (!newWindow.arguments[1]){

                w=500;

        }else w=newWindow.arguments[1];

        if (!newWindow.arguments[2]){

                h=300;

        }else h=newWindow.arguments[2];

        settings = 'height='+h+',width='+w+',screenX=0,screenY=0,locationbar=no,scrollbars=yes';

        fenster = window.open(datei,'window',settings);

//        fenster = window.open(datei,'window','w,h,locationbar=no,scrollbars=yes');

        fenster.focus();

}
