function displayWindow(url, width, height)
{

try
  {
		if(okno) {okno.close();}
  }
catch(err)
  {
  }

okno = window.open('about:blank', 'web', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width=' + width + ',height=' + height + ',top=0,left=0');
okno.document.write('<html><head><TITLE>Foto</TITLE></HEAD><BODY topmargin=0 marginheight=0 leftmargin=0 marginwidth=0 bgcolor=white><A HREF="javascript: self.close();okno=false;"><img src="'+url+'" alt="[zamknij okno]" border=0 ></A></body></html>');

okno.document.close();

}

function displayHTMLWindow(url, width, height)
{

try
  {
		if(okno) {okno.close();}
  }
catch(err)
  {
  }

okno = window.open(url, 'web', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width=' + width + ',height=' + height + ',top=0,left=0');

}


