function WindowHTMLOpen(Zdroj, Sirka, Vyska)
{
  var Parametry = "resizable=yes, location=yes, menubar=yes, scrollbars=yes, status=yes, toolbar=yes, left=25, top=25, height=" + Vyska + ", width=" + Sirka;
  var NewWindow = window.open(Zdroj, "NewWindow", Parametry);
}

function WindowImageOpen(Zdroj, Titulek, Sirka, Vyska)
{
  var PomSirka = Sirka;
  var PomVyska = Vyska + 36;
  var Parametry = "resizable=no, location=no, menubar=no, scrollbars=no, status=no, toolbar=no, left=25, top=25, height=" + PomVyska + ", width=" + PomSirka;

  var NewWindow = window.open("", "NewWindow", Parametry);

  NewWindow.document.open();
  NewWindow.document.write("<html>");
  NewWindow.document.write("<head>");
  NewWindow.document.write("<title>" + Titulek + "</title>");
  NewWindow.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"scripts/style_window.css\">");
  NewWindow.document.write("</head>");
  NewWindow.document.write("<body>");
  NewWindow.document.write("<a href=\"javascript:window.close()\"><img src=\"" + Zdroj + "\" width=\"" + Sirka + "\" height=\"" + Vyska + "\" border=\"0\"></a>");
  NewWindow.document.write("<h1>" + Titulek + "</h1>");
  NewWindow.document.write("</body>");
  NewWindow.document.write("</html>");
  NewWindow.document.close();
}


