

function openokienko(theURL,winName,features)
{
   window.open(theURL,winName,features);
}



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="styl.css" type="text/css">');
  okno.document.writeln('<title> Apartamenty Dêbki - zapraszamy  </title>');
  okno.document.writeln('</head>');
  okno.document.writeln('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
  okno.document.writeln('');
  okno.document.writeln('<div align="center" class="tekst1">');
  okno.document.writeln('<br><img src="' +nazwa+ '" border="1" alt="" width="' +szer+ '" height="' +wys+ '">');
  okno.document.writeln('<br><br><a href="javascript:window.close();" onfocus="blur()">Zamknij okno</a>');
  okno.document.writeln('</div>');
  okno.document.writeln('');
  okno.document.writeln('</body>');
  okno.document.writeln('</html>');

}


