function povecajsliko(pot, naslov, zapri) {
   okno=window.open('','povecajsliko', 'menubar=0,toolbar=0,status=0,scrollbars=0,resizable=0');
   okno.document.writeln('<html><head><title>' + naslov + '</title>');
   okno.document.writeln('<sc' + 'ript language="javascript" type="text/javascript">');
   okno.document.writeln('<!--');
   okno.document.writeln('   var NS = (navigator.appName==\'Netscape\')?true:false;');
   okno.document.writeln('   function fitPic(){');
   okno.document.writeln('      iWidth = document.images[0].width;');
   okno.document.writeln('      iHeight = document.images[0].height;');
   okno.document.writeln('      window.resizeTo(iWidth + 30, iHeight + 69);');
   okno.document.writeln('   }');
   okno.document.writeln('//-->');
   okno.document.writeln('</sc' + 'ript>');
   okno.document.writeln('</head>');
   okno.document.writeln('<body marginwidth=\'0\' marginheight=\'0\' leftmargin=\'0\' rightmargin=\'0\' topmargin=\'0\' bottommargin=\'0\' onLoad=\'fitPic();self.focus();\' onBlur=\'self.close();\' onClick=\'self.close();\'>');
   okno.document.writeln('<table width="100%" height="100%" border="0"><tr><td align="center" valign="middle"><img src="' + pot + '" border="0" alt="' + zapri + '"></td></tr></table>');
   okno.document.writeln('</body></html>');
   okno.document.close()
}

