<!--
function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#F0FFC1';
	  tableRow.style.cursor='pointer';
    }
    else
    {
      tableRow.style.backgroundColor = '#FFFFFF';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }

//-->