<!--
function noveokno(co,xwidth,yheight,nadpis)
{
 xx = screen.width/2 - xwidth/2;
 yy = screen.availHeight/2 - yheight/2;
 var xdist = 0;
 var ydist = 0;
 if (document.all)
 {
  var xdist = 10;
  var ydist = 29;
 }
 else
 {
  var xdist = 8;
  var ydist = 28;
 }
 var okno = window.open("","new","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,left="+xx+",top="+yy+",resizable=no,width="+(xwidth+xdist+20)+",height="+(yheight+ydist));
 okno.resizeTo(xwidth+xdist,yheight+ydist);
 okno.document.clear();
 okno.document.open("text/html");
 okno.document.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
 okno.document.writeln('<html><head><title>'+nadpis+'</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1250"></head>');
 okno.document.writeln('<body topmargin="0" leftmargin="0" style="margin:0px;background-color:#ffffff;">');
 okno.document.writeln('<img src="'+co+'" width='+xwidth+' height='+yheight+'"><br>');
 okno.document.writeln('</body>');
 okno.document.writeln('</html>');
 okno.document.close();
}
// -->