  // ----------------------------- JavaScript - constanty ------------------------------------------------------------------------------------------------------
  stCHelpVert = {x: null, y: null };                   // objek urcujici pozice 
  elmStCHelp = null;
  elmStHelpText = null;
  // ----------------------------- JavaScript - constanty ------------------------------------------------------------------------------------------------------
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function fncTDin(elC,idx)
    {
      // elC.style.background='#888888';
      // elC.style.textDecoration = 'underline';
      if ((elmStHelpText != null) && (elmStCHelp != null)) 
        {
          elmStHelpText.innerHTML = arrCHelpT[idx];
          fncGetPosForElement(elC, stCHelpVert);
          elmStCHelp.style.left = stCHelpVert.x + 120;
          elmStCHelp.style.top = stCHelpVert.y - 15;
          elmStCHelp.style.visibility = '';
        }
      // elC.style.background='#284243';
    }
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function fncTDout(elC) 
    {
      if ((elmStHelpText != null) && (elmStCHelp != null)) 
      {
        // elC.style.background='';
        // elC.style.textDecoration = '';
        elmStCHelp.style.visibility = 'hidden';
      }
    }
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function fncTDClck(bytS,strExec) {
      if (strExec == '') return 1;
      bytS ? (eval(strExec)) : (location.href = strExec);
    }
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function fncEffect1(elmDiv,intSmer)
    {                                                   // zacatek funkce
      if ((document.all) || (document.layers))
        {
          var elmCurr;
          var i;
          if (intSmer == 0) 
            {
              elmDiv.style.cursor='hand';
              i = 0;
              elmCurr = document.all;
              while (elmCurr(i) != elmDiv) i++;
              while ((elmCurr(i).tagName != 'SPAN') && (i+1 < elmCurr.length)) i++;
              if (elmCurr(i).tagName == 'SPAN') elmCurr(i).style.color='#999999';
              // window.status = 'new';
            }
          else
            {
              elmDiv.style.cursor='';
              i = 0;
              elmCurr = document.all;
              while (elmCurr(i) != elmDiv) i++;
              while ((elmCurr(i).tagName != 'SPAN') && (i+1 < elmCurr.length)) i++;
              if (elmCurr(i).tagName == 'SPAN') elmCurr(i).style.color='';
              window.status = '';
            }
        }
    }                                                   // konec funkce
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function stEfcInit()
    {
      elmStCHelp    = document.getElementById('stCHelp');
      elmStHelpText = document.getElementById('stHelpText');
    }
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  function fncFadeOut(elmCurr) 
    {
      elmCurr.style.filter="blendTrans(duration=1)";
      if (elmCurr.filters.blendTrans.status != 2)
        {
          elmCurr.filters.item(0).apply();
          elmCurr.style.visibility = 'hidden';
          elmCurr.filters.item(0).play();
        }
    }
  // ----------------------------- JavaScript - funkce ---------------------------------------------------------------------------------------------------------
  
