<!-- ***** FUNKCE PRO onMouseOver ***** //-->

      function setPointer(theRow, thePointerColor)
      {
        if((thePointerColor=='')||(typeof(theRow.style)=='undefined'))
          return false;
        if(typeof(document.getElementsByTagName)!='undefined')
          var theCells = theRow.getElementsByTagName('td');
        else
          if(typeof(theRow.cells)!='undefined')
            var theCells = theRow.cells;
          else
            return false;

        var rowCellsCnt=theCells.length;
        for(var c = 0; c < rowCellsCnt; c++)
          theCells[c].style.backgroundColor = thePointerColor;
        return true;
      }
<!-- ***** FUNKCE PRO onClick ***** //-->

	 function go(adresa)
	 {
	   var left = 0;
	   var top = 0;
	   left = (screen.width / 2) - 350;
	   top = (screen.height / 2) - 400;
	   window.open("http://"+adresa,"_blank","top=" + top + ", left=" + left + ","+"width=700, height=800");
	 }
	 
	 function openPopup(url, name, width, height, resizeable) {
  	mfwin = window.open(url, name, "dependent=yes,width="+width+",height="+height+",location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes");
  }


  function selectAllMsg() {
      var i = 1;
      do {
          if ( document.getElementById("message_" + i).checked ) {
              document.getElementById("message_" + i).checked = "";
          }
          else {
              document.getElementById("message_" + i).checked = "checked";
          }
          i++;
      }
      while ( document.getElementById("message_" + i) )
      
      return false;
  }
