function img_zoom(nazwa,x,y)
{
 if (y>screen.height)
  {
   x = x + 20;
   y = screen.height-100;
  }
 x = x+20;
 y = y+12;
 okno=window.open("", "","scrollbars=yes, status=no, width="+x+", height="+y)
 napis="<html><head><title>Powiekszenie</title><style type=\"text/css\">body {background: url(img/loading.gif) fixed no-repeat center; }</style></head><body><div style='position:absolute; left:0; top:0'><a href='javascript:window.close()'><img src=\""+nazwa+"\" border=0></a></div></body></html>"
 okno.document.write(napis)
}
