/* author: Pawel Pietrasz */
/* Creation date: 02-08-20 */

/* update: Mateusz Zych */
/* Last modification: 31.08.2005 */

 <!-- 
 noweOkienko = null; 
 function galeria(src, w, h){ 
 if(window.screen){ 
  aw=screen.availWidth; 
  ah=screen.availHeight; 
 }else{ 
  aw=640; 
  ah=450; 
 } 
 if(noweOkienko==null || noweOkienko.closed){ 
  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"
  noweOkienko = window.open("",'obrazek',ustawienia);
 }
 noweOkienko.document.open();
 noweOkienko.document.clear();
 noweOkienko.document.write( 
 "<html><head><title>Krosno24.pl - Krośnieński Portal Internetowy</title>\n" 
 +"<style><!--\n" 
 +"body{margin:0px; background-repeat:no-repeat}\n"
 +"--></style>\n" 
 +"</head>\n" 
 +"<body onclick='javascript:self.close();return false;'><div><img src='"+src+"' border='0'></div></body>\n" 
 +"</html>" 
 ); 
 noweOkienko.document.close();
 noweOkienko.focus();
 }
 //-->
