
/***********************************************
* highlight & link table cell
***********************************************/

    function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#F3F3F3';
    }
    else
    {
      tableRow.style.backgroundColor = 'white';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }
  
      function ChangeColorTopNav(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#EEEEEE';
    }
    else
    {
      tableRow.style.backgroundColor = '#E5E5E5';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }
  
  
  
 