function zobraz(obr,nadpis,dx,dy)
{
	//if (wind) wind.close();
  	nw = window.open('','nadpis','width=' + dx +',height=' + dy + ',menubar=0,resizable=0,scrollbars=auto,toolbars=no');
	wind=nw;
    	if (nw==null) return;
	nw.document.clear();
	nw.document.write("<head><title>");
	nw.document.write(nadpis);
	nw.document.write("</title></head>");
	nw.document.write("<body style=\"margin=0px; padding=0px;\" leftmargin=0 topmargin=0 scroll=no rightmargin=0 bottommargin=0 ><img src='");
	nw.document.write(obr);
	nw.document.write("' ONCLICK='javascript: self.close()' alt='Pro uzavření obrázku klikněte'></body></html>");
}

