    function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#efefef';
	  tableRow.style.cursor="hand";
    }
    else
    {
      tableRow.style.backgroundColor = 'white';
	  tableRow.style.cursor="pointer";
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }
  
     function ChangeColor2(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#efefef';
    }
    else
    {
      tableRow.style.backgroundColor = 'white';
    }
  }

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