
 <!-- 
 nowaGaleria = null;
 function galeria(src, w, h){
 if(window.screen){ 
  aw=screen.availWidth; 
  ah=screen.availHeight; 
 }else{ 
  aw=640; 
  ah=450; 
 } 
 if(nowaGaleria==null || nowaGaleria.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"
  nowaGaleria = window.open("",'obrazek',ustawienia);
 }
 nowaGaleria.document.open();
 nowaGaleria.document.clear();
 nowaGaleria.document.write(
 "<html><head><title>Og³oszenia hull.pl</title>\n"
 +"<style><!--\n" 
 +"body{background-repeat:no-repeat}\n"
 +"--></style>\n" 
 +"</head>\n" 
 +"<body topmargin=0 leftmargin=0 onclick='javascript:self.close();return false;'><img src="+src+" alt='Kliknij aby zamknħĉ' border=0 ></body>\n"
 +"</html>" 
 ); 
 nowaGaleria.document.close();
 nowaGaleria.focus();
 }
 //-->
