var okno = null;
function Powieksz(url,width,height)
{
  ScrWidth = 640;
  ScrHeight = 480;
  
  if(window.screen)
  {
    ScrWidth = window.screen.width; 
	ScrHeight = window.screen.height;
  }
  
  PosX = Math.round((ScrWidth - width) / 2);
  PosY = Math.round((ScrHeight - height) / 2);
  
  if(okno != null && !document.layers)
  {
    okno.close();
  }
  okno = window.open("", "galeria", "menubar=no, toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, copyhistory=no, width=" + width + ", height=" + height + ", left=" + PosX + ", top=" + PosY);
  okno.document.open();
  okno.document.clear();
  okno.document.write("<html><head><title>TAK PHU - Galeria</title></head><body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' rightmargin='0' bottommargin='0' marginwidth='0' marginheight='0'><a href='JavaScript:window.close()' onFocus='blur()'><img src='" + url + "' alt='kliknij na zdjêcie aby zamkn±æ okno' border='0'></a></body></html>");
  okno.document.close();
  okno.focus()
}