function fotogalerie_obrazek(id, foto)
  {
  var okno_sirka = window.screen.width;
  var okno_vyska = window.screen.height;
  var top = (okno_vyska - 860) / 2;
  var left = (okno_sirka - 1221) / 2;
  if (top < 0) { top = 0; }
  if (left < 0) { left = 0; }
  window.open("fotogalerie.php?id=" + id + "&foto=" + foto, "fotogalerie", "width=1221, height=860, top=" + top + ", left=" + left + ", directories=0, location=0, resizable=1, menubar=0, toolbar=0, scrollbars=1, status=0");
  }
  
  
  
function pocet_znaku(id, pocet, vypis)
  {
  if (pocet == 0)
    {
    id_pocet = document.getElementById(id).value.length;
    document.getElementById(vypis).value = (id_pocet + 1);
    }
  else
    {
    id_pocet = document.getElementById(id).value.length;
    id_obsah = document.getElementById(id).value;

    if (id_pocet < pocet)
      { document.getElementById(vypis).value = pocet - (id_pocet + 1); }

    if (id_pocet >= pocet)
      {
      id_obsah_max = id_obsah.substring(0, pocet - 1);
      document.getElementById(id).value = id_obsah_max;
      window.alert('Vyčerpali jste maximální počet znaků');
      }
    }
  }
