
var OldTop = 0;


function moveobject()
{
  var MF = (document.getElementById) ? 1:0;
  var NS = (document.layers) ? 1:0;
  var IE = (document.all) ? 1:0;
  var Position = 0;
  var Offset = 737;
  var Maximum = 0;
  var TheTop = 10;
  var Diff = 0;

  if ((document.documentElement) && (document.documentElement.clientHeight)) { Maximum = document.documentElement.scrollHeight; }
   else
  if ((document.body) && (document.body.clientHeight)) { Maximum = document.body.scrollHeight; }
   else
  if (window.innerHeight) { Maximum = window.innerHeight; }

  if ((document.documentElement) && (document.documentElement.scrollTop)) { Position = document.documentElement.scrollTop; }
   else
  if (document.body) { Position = document.body.scrollTop; }
   else
  { Position = window.pageYOffset; }

  if (Position < TheTop) { Position = TheTop; }

  if (Position != OldTop)
  {
    Diff = .1 * (Position - OldTop);
    if (Diff > 0) { Diff = Math.ceil(Diff); }
             else { Diff = Math.floor(Diff); }

    if ((OldTop + Diff + TheTop + Offset) < Maximum)
    {
      if ((MF) && (!IE)) {
                          var Pozice = 0;
                          if (parseInt(document.getElementById("Objekt").style.top)) { Pozice = parseInt(document.getElementById("Objekt").style.top); }
                          document.getElementById("Objekt").style.top = (Pozice + Diff) + 'px';
                         }
        else
      if (IE) { document.all.Objekt.style.pixelTop += Diff; }
        else
      if (NS) { document.Objekt.top += Diff; }
      OldTop += Diff;
    }

  }
}


function winonload()
{
  window.setInterval("moveobject()", 66);
}


function winopen(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 winopen_IMG(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>\n");
  NewWindow.document.write("<head>\n");
  NewWindow.document.write("<title>" + Titulek + "</title>\n");
  NewWindow.document.write("<link type=\"text/css\" href=\"skripty/window.css\" rel=\"stylesheet\">\n");
  NewWindow.document.write("</head>\n");
  NewWindow.document.write("<body>\n");
  NewWindow.document.write("<a href=\"javascript:window.close()\"><img src=\"" + Zdroj + "\" width=\"" + Sirka + "\" height=\"" + Vyska + "\" border=\"0\"></a>\n");
  NewWindow.document.write("<h1>" + Titulek + "</h1>\n");
  NewWindow.document.write("</body>\n");
  NewWindow.document.write("</html>\n");
  NewWindow.document.close();
}


function writefooter(Strana)
{
  document.write("&copy;1992 - 2009 SATTURN HOLEŠOV spol. s r. o. Všechna práva vyhrazena. Design SATTURN HOLEŠOV spol. s r. o.<br />");
  document.write("SATTURN&reg; a DOMINO&reg; jsou registrované ochranné známky společnosti SATTURN HOLEŠOV spol. s r. o.<br />");
  document.write("S.E.E.&reg; je registrovaná ochranná známka společnosti Omniglow Corporation.<br /><br />");

  document.write("Zobrazení stránky testováno pod MS Internet Explorer 6 a 7 a Mozila Firefox 2 a 3.<br />");
  document.write("Při špatném zobrazení stránky si, prosím, vypněte CSS styly.<br /><br />");

  document.write("<a href=\"" + Strana + "#Page\">Nahoru</a> | ");
  document.write("<a href=\"http://validator.w3.org/check?uri=http://www.satturn.cz/" + Strana + "\">XHTML</a> | ");
  document.write("<a href=\"http://jigsaw.w3.org/css-validator/validator?uri=http://www.satturn.cz/" + Strana + "\">CSS</a> | <br>");

  document.write("<div id=\"Page_Footer_Vlajky\">");
  document.write("<a href=\"" + Strana + "\"><img src=\"menu/cz.gif\" alt=\"CZ\" width=\"32\" height=\"20\" border=\"0\"></a> ");
  document.write("<a href=\"products.htm\"><img src=\"menu/uk.gif\" alt=\"UK\" width=\"32\" height=\"20\" border=\"0\"></a> ");
  document.write("</div>");
}

