﻿ function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.className = 'ChangeColorSelectedRow';
    }
    else
    {
      tableRow.className = 'OurHeadingSelectedRow';
    }
  }

  function DoNav(theUrl)
  {
  document.location.href = theUrl;
  }
