    function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = 'lightblue';
	  tableRow.style.cursor="hand"; // Added to provide the Hand
    }
    else
    {
      tableRow.style.backgroundColor = 'white';
	  tableRow.style.cursor="pointer"; // Added to provide the Pointer
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }

