function MainMenu(Offset)
{
  Obrazek = 0
  if (Offset == 99)
  {
    Obrazek = Math.ceil(Math.random()*10);
  }
  else
  {
    Obrazek = Math.ceil(Math.random()*5) + Offset;
  }
  document.write("<div id=\"headermenuimg\" class=\"headermenuimg" + Obrazek + "\">");
  document.write("<div id=\"headermenu\">");
  document.write("<dl id=\"deflist\">");
    document.write("<dd><a href=\"index.htm\" title=\"Akční nabídka\">Akční nabídka</a></dd>");
    document.write("<dd><a href=\"spotrebice.htm\" title=\"Domácí spotřebiče\">Domácí spotřebiče</a></dd>");
    document.write("<dd><a href=\"nabytek.htm\" title=\"Nábytek a sedačky\">Nábytek a sedačky</a></dd>");
    document.write("<dd><a href=\"zebriky.htm\" title=\"Žebříky, lešení, schůdky a míchačky\">Žebříky a lešení</a></dd>");
    document.write("<dd><a href=\"vodotopo.htm\" title=\"Vodo - topo - plyn\">Vodo - topo - plyn</a></dd>");
    document.write("<dd><a href=\"motorsport.htm\" title=\"Motorsport team Janiš\">Motorsport team</a></dd>");
    document.write("<dd><a href=\"ospolecnosti.htm\" title=\"O společnosti\">O společnosti</a></dd>");
    document.write("<dd><a href=\"eshop/index.php\" title=\"eShop\">eShop</a></dd>");
  document.write("</dl>");
  document.write("</div>");
  document.write("</div>");
}

function MainFooter()
{	
  document.write("<div id=\"mainfooter\">");
    document.write("<a href=\"spotrebice.htm\">Domácí spotřebiče</a>");
    document.write("<a href=\"nabytek.htm\">Nábytek a sedačky</a>");
    document.write("<a href=\"zebriky.htm\">Žebříky, lešení a míchačky</a>");
    document.write("<a href=\"vodotopo.htm\">Vodo - topo - plyn</a>");
    document.write("<a href=\"motorsport.htm\">Motorsport team</a>");
  document.write("</div>");
}

function PageFooter(ADocumentURL)
{
  document.write("<p>");
  document.write("Správné zobrazení obsahu stránky v prohlížeči vyžaduje povolení JavaScriptu.<br />");
  document.write("Zobrazení stránky testováno pod MS Internet Explorer 8 a Mozila Firefox 3.<br />");
  document.write("Při špatném zobrazení stránky si, prosím, vypněte CSS styly.");
  document.write("</p>");

  document.write("<p>");
  document.write("<strong>&copy; 2012 Domací spotřebiče Janiš - Holešov</strong>");
  document.write("</p>");

  document.write("<div id=\"footmenu\">");
  document.write("<p>");
  document.write("<a href=\"" + SiteFileName(ADocumentURL) + "#page\"><img src=\"menu/nahoru.png\" width=\"48\" height=\"48\" alt=\"Nahoru\" border=\"0\" /></a>&nbsp;&nbsp;&nbsp;");
  document.write("<a href=\"index.htm\"><img src=\"menu/domu.png\" width=\"48\" height=\"48\" alt=\"Domů\" border=\"0\" /></a>&nbsp;&nbsp;&nbsp;");
  document.write("<a href=\"javascript:window.print()\"><img src=\"menu/tisk.png\" width=\"48\" height=\"48\" alt=\"Tisk\" border=\"0\" /></a>");
  document.write("</p>");
  document.write("</div>");
}

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();
}

function EProtect(a)
{
  document.write("<a href=\"&#109;ailto:" + a + "&#64;janis-holesov&#46;cz\">" + a + "&#64;janis-holesov&#46;cz</a>");
} 

function SiteFileName(ADocumentURL)
{
  if (ADocumentURL.indexOf("\\") > -1)
  {
    return ADocumentURL.substring(ADocumentURL.lastIndexOf("\\") + 1, ADocumentURL.length);
  }
  else
  {
    return ADocumentURL.substring(ADocumentURL.lastIndexOf("\/") + 1, ADocumentURL.length);
  }
}


