function img(FileName, nadpis, popis)
{
  var wnd = window.open("", "newWindow", "alwaysraised=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=auto,status=no,titlebar=yes,width=640,height=480");
  wnd.document.open("text/html", "replace");
  wnd.document.writeln("<html>");
  wnd.document.writeln("<head>");
  wnd.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
  wnd.document.writeln("<title>Provence - obrázek</title>");
  wnd.document.writeln("<script type=\"text/javascript\">");
  wnd.document.writeln("function setSize()");
  wnd.document.writeln("{");
  wnd.document.writeln("var img = window.document.images[0];");
  wnd.document.writeln("window.resizeTo(img.width+30, img.height+300);");
  wnd.document.writeln("}");
  wnd.document.writeln("</script>");


  wnd.document.writeln('<meta name="resource-type" content="document">');
  wnd.document.writeln("</head>");
  wnd.document.writeln('<body onBlur="window.close()" onLoad="setSize();">');

  wnd.document.writeln('<img src="'+FileName+'" style="border: none;">');


  if(nadpis=="" && popis!=""){
  wnd.document.writeln("<br /><br /><b>"+popis+"</b>");
  }
  else if(nadpis!="" && popis!=""){
  wnd.document.writeln("<br /><br /><b>"+nadpis+"</b><br />");
  wnd.document.writeln("<br />"+popis);
  }

  wnd.document.writeln("</body>");
  wnd.document.writeln("</html>");
  wnd.document.close();
  wnd.onBlur = "window.close();";
  wnd.focus();
}



function only_img(FileName)
{
  var wnd = window.open("", "newWindow", "alwaysraised=yes,dependent=yes,hotkeys=no,location=no,menubar=no,resizable=no,scrollbars=auto,status=no,titlebar=yes,width=640,height=480");
  wnd.document.open("text/html", "replace");
  wnd.document.writeln("<html>");
  wnd.document.writeln("<head>");
  wnd.document.writeln('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
  wnd.document.writeln("<title>Provence - obrázek</title>");
  wnd.document.writeln("<script type=\"text/javascript\">");
  wnd.document.writeln("function setSize()");
  wnd.document.writeln("{");
  wnd.document.writeln("var img = window.document.images[0];");
  wnd.document.writeln("window.resizeTo(img.width+30, img.height+80);");
  wnd.document.writeln("}");
  wnd.document.writeln("</script>");


  wnd.document.writeln('<meta name="resource-type" content="document">');
  wnd.document.writeln("</head>");
  wnd.document.writeln('<body onBlur="window.close()" onLoad="setSize();">');

  wnd.document.writeln('<img src="'+FileName+'" style="border: none;">');


  wnd.document.writeln("</body>");
  wnd.document.writeln("</html>");
  wnd.document.close();
  wnd.onBlur = "window.close();";
  wnd.focus();
}

