// JavaScript Document

  function ZvetsiObrazek(obrazek, width, height)
  {
    window.open('/zbozi/obrazek.php?id='+obrazek+'', 'noveokno', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=no, width='+width+', height='+height+', left=300, top=500');
  }

  function HistorieObjednavek(uID)
  {
    window.open('/admincenter/uzivatele/historie-objednavek.php?id='+uID+'', 'nove_okno', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=no, width=900, height=500, left=300, top=180');
  }

  function ZmenitStav(oID,Stav)
  {
    window.open('/admincenter/objednavky/zmenit-stav.php?id='+oID+'&s='+Stav, 'nove_okno', 'toolbar=no, menubar=no, location=no, directories=no, scrollbars=no, resizable=no, status=no, width=900, height=500, left=300, top=180');
  }

  /*function ZaskrtniNadrazene(nadrazene1,nadrazene2)*/
  function ZaskrtniNadrazene(nadrazene1)
  {
    var b = document.getElementsByName("kat-"+nadrazene1);
    
    for (var j = 0; j < b.length; j++)
    {
      if (b[j].type == "checkbox")
      {
        b[j].setAttribute("checked", "checked");
      }
    }
  /*
    if(nadrazene2 != 0)
    {
      var c = document.getElementsByName("kat-"+nadrazene2);
      
      for (var k = 0; k < c.length; k++)
      {
        if (c[k].type == "checkbox")
        {
          c[k].setAttribute("checked", "checked");
        }
      }
    }
  */
    return true;
  }

