function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#3d3d3d';
    }
    else
    {
      tableRow.style.backgroundColor = '#232323';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
}

