<!--

nowe = null;

function okno(src, scrl) { 
 w=370;
 h=350;
 if(window.screen) {
   aw=screen.availWidth;
   ah=screen.availHeight;
 } else {
   aw=370;
   ah=350;
 }
 if(nowe==null || nowe.closed) {
   ;
 } else {
   nowe.window.close();
 }
 ustawienia=
    "left=" + (aw-w)/2 + ","
   +"top=" + (ah-h)/2 + ","
   +"screenX=" + (aw-w)/2 + ","
   +"screenY=" + (ah-h)/2 + ","
   +"width=" + w + ","
   +"height=" + h + ","
   +"innerWidth=" + w + ","
   +"innerHeight=" + h + ","
   +"toolbar=no,"
   +"location=no,"
   +"directories=no,"
   +"status=no,"
   +"menubar=no,"
   +"scrollbars=yes,"
   +"resizable=yes"
 nowe = window.open('','katalog',ustawienia);
 nowe.document.open();
 nowe.document.clear();
 nowe.document.write(
    "<html><head>\n"
   +"<title>spilliaert</title>\n"
   +"</head>\n"
   +"<frameset rows=\"*\" frameborder=\"NO\" border=\"0\" framespacing=\"0\">\n"
   +"<frame src=" + src + " noresize marginwidth=\"0\" marginheight=\"0\" frameborder=\"NO\" name=\"katalog\" scrolling=\"YES\">\n"
   +"</frameset><noframes></noframes>\n"
   +"</html>"
 );
 nowe.document.close();
 nowe.focus();
}


//-->

