<!--

nowe = null;

function okno2(src, scrl) { 
 w=320;
 h=320;
 if(window.screen) {
   aw=screen.availWidth;
   ah=screen.availHeight;
 } else {
   aw=320;
   ah=320;
 }
 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=no,"
   +"resizable=no"
 nowe = window.open('','katalog',ustawienia);
 nowe.document.open();
 nowe.document.clear();
 nowe.document.write(
    "<html><head>\n"
   +"<title>Joanna Morawska</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();
}


//-->

