function otevri_okno(obrazek)
{
	var win=window.open("","nazev","width=800,height=600,menubar=no,toolbar=no");
	win.document.write("<html>");
	win.document.write("<head><meta http-equiv='content-type' content='text/html; charset=windows-1250' />");
	win.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"css.css\">");				
	win.document.write("</head>");	
	win.document.write("<body>");	
	win.document.write("<table width='100%' height='100%'><tr><td valign='middle' align='center'><a href='javascript:window.close()'><img src='"+obrazek+"' border='0' alt='kliknutím na obrázek zavřete okno' /></a><br><br><cener><a href='javascript:window.close()'><font color='#C32323'>zavřít okno</font></a></td></tr></table>");
	win.document.write("</body></html>");
}