
okno="";

function foto(nazwa, szer, wys) {

  szer1=szer+30;
  wys1=wys+70;
  opcje="toolbar=no,directories=no,menubar=no,resizable=no,scrollbars=no,width=" +szer1+ ",height=" +wys1+ ",left=10,top=10";

  if (okno.closed == false)
    {
       okno.close(); okno=window.open('','okno',opcje);
    } else {
       okno=window.open('','okno',opcje);
    }
  okno.focus();

  okno.document.writeln('<html>');
  okno.document.writeln('<head>');
  okno.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">');
  okno.document.writeln('<link rel=stylesheet href="styles.css" type="text/css">');
  okno.document.writeln('<title>Active - Spedycja i Transport Międzynarodowy</title>');
  okno.document.writeln('</head>');
  okno.document.writeln('<body bgcolor="#6A84D9" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  okno.document.writeln('');
  okno.document.writeln('<div align="center" style="background: #6A84D9; margin: 0;">');
  okno.document.writeln('<br><img src="' +nazwa+ '" border="0" alt="" width="' +szer+ '" height="' +wys+ '" style="border: 5px solid #97A9E4;">');
  okno.document.writeln('<br><br><a href="javascript:window.close();" onfocus="blur()">Zamknij okno</a><br><br><br>');
  okno.document.writeln('</div>');
  okno.document.writeln('');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');

}


