// In this section we set up the content to be placed dynamically on the page.
// Customize movie tags and alternate html content below.

// Funkce pro ovládání cookies
function prectiCookie(nazev) {
  obsah=document.cookie; upravene=obsah.split(';');
  velikost=upravene.length; kusy=""; vrat="";

  for (x=0;(x<velikost && vrat=="");x++) {
    kusy=upravene[x].split('=');
    if (kusy[0].substring(0,1)==' ') 
      kusy[0]=kusy[0].substring(1,kusy[0].length);
    if (kusy[0]==nazev) vrat=kusy[1];
  }
  if (vrat) return unescape(vrat);
    else return "false";
}
function prepisCookie(nazev,hodnota) {
    document.cookie=nazev+"="+escape(hodnota);
}

function flashButton() {
	prepisCookie("dontLoadFlash","true");
	location.reload(true);
}

//prepisCookie('dontLoadFlash','false');
// zjištění, zda uživetel neche zobrazovat flash
dontLoadFlash = prectiCookie("dontLoadFlash");



if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion && (dontLoadFlash=="false")) {  // if we've detected an acceptable version
    var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="750" height="188" id="indexFlash">'
    + '<param name="movie" value="flash/index.swf">'
    + '<param name="bgcolor" value="#666666">'
	+ '<param name="menu" value="false" />'
    + '<param name="quality" value="high">'
    + '<param name="loop" value="false">'
    + '<param name="allowScriptAccess" value="sameDomain">'
	+ '<embed id="indexFlash" src="flash/index.swf" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" bgcolor="#666666" menu="false" quality="high" scale="noscale" width="750" height="188"></embed>'
    + '</object>';

    document.write(oeTags);   // embed the flash movie
  } else {  // flash is too old or we can't detect the plugin
    // NOTE: height, width are required!
    var alternateContent = '<img src="images/flash.jpg" alt="" width="750" height="188" border="0" usemap="#navbar"><br>'
    + '<map name="navbar">'
    + '<area alt="Onás" coords="202,159,311,188" href="onas.php">'
    + '<area alt="Produkty" coords="311,159,420,188" href="prod.php">'
    + '<area alt="Služby" coords="420,159,529,188" href="sluz.php">'
    + '<area alt="Podpora" coords="529,159,638,188" href="podp.php">'
    + '<area alt="Kontakty" coords="638,159,747,188" href="kontakt.php">'
    + '<area alt="HOME" coords="6,7,199,156" href="index.php" shape="rect">'
    + '<area shape="rect" coords="7,160,195,184" onclick="prepisCookie(\'dontLoadFlash\',\'false\');location.reload(true);" href="#" alt="Flash verze">'
    + '</map>';

    document.write(alternateContent);  // insert non-flash content
  }
}
