function menu(t)
  {
    if (t.parentNode.getElementsByTagName("div")[0].style.display=="none")
      { t.parentNode.getElementsByTagName("div")[0].style.display="inline"; }
    else
      { t.parentNode.getElementsByTagName("div")[0].style.display="none"; }
  }

function podglad (url, x, y)
  {
    okno = window.open("", "o", "width="+x+", height="+y+", left=100, top=25,"
           + " innerwidth="+x+", innerheight="+y+", location=0, directories=0,"
           + " scrollbars=0, menubar=0, toolbar=0, status=0, resizable=1");

    okno.document.open();

    okno.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 Strict//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">');
    okno.document.writeln('');
    okno.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="pl">');
    okno.document.writeln('');
    okno.document.writeln('<head>');
    okno.document.writeln('  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />');
    okno.document.writeln('  <meta http-equiv="Content-Style-Type" content="text/css" />');
    okno.document.writeln('  <meta http-equiv="Content-Language" content="pl" />');
    okno.document.writeln('');
    okno.document.writeln('  <meta name="Copyright" content="Copyright (c) Auto-Szko³a Konrad (r)" />');
    okno.document.writeln('');
    okno.document.writeln('  <meta http-equiv="imagetoolbar" content="no" />');
    okno.document.writeln('');
    okno.document.writeln('  <style type="text/css">');
    okno.document.writeln('    <!--');
    okno.document.writeln('    body');
    okno.document.writeln('      { margin: 0px; padding: 0px; background-color: #ffffff;}');
    okno.document.writeln('    img');
    okno.document.writeln('      { display: block; border: 0px;}');
    okno.document.writeln('    -->');
    okno.document.writeln('  </style>');
    okno.document.writeln('');
    okno.document.writeln('  <title>Auto-Szko³a Konrad</title>');
    okno.document.writeln('</head>');
    okno.document.writeln('');
    okno.document.writeln('<body>');
    okno.document.writeln('  <a href="javascript:self.close()"><img src="'+url+'" alt="Kliknij aby zamknħĉ" title="Kliknij aby zamknħĉ" /></a>');
    okno.document.writeln('</body>');
    okno.document.writeln('');
    okno.document.writeln('</html>');

    okno.document.close();
    okno.focus();
  }
