function openImgWindow(path, width, height, title)
{
  var heightWindow = height + 100;
  var widthWindow = width + 100;
  dyn_okno = window.open("","dyn_okno", "height="+heightWindow+"px, width="+widthWindow+"px, top=0, left=0, resizable=no, status=no, toolbar=no,location=no, scrollbars=yes, resizable=yes");
  dyn_okno.document.write("<html><head><title>"+title+"</title><meta http-equiv=\"Content-type\" content=\"text/html;	charset=UTF-8\"><link rel=\"stylesheet\" type=\"text/css\" href=\"etc/style.css\"></head><body bgcolor=\"#dddddd\">");
  dyn_okno.document.write("<div class=\"imgJS\" style=\"width: "+(width+10)+"px;\">");
  dyn_okno.document.write("<img src=\"pic/"+path+"\" border=\"0\" width=\""+width+"\" height=\""+height+"\"	alt=\""+title+"\">");
	dyn_okno.document.write("<p class=\"center\">"+title+"<br>");
	dyn_okno.document.write("<a href=\"javascript:window.close()\">[ ZAVŘÍT OKNO ]</a></p>");
  dyn_okno.document.write('</div></body></html>');
  dyn_okno.document.close();
}
