// roll for drop list
function ChangeColor(tableRow, highLight)
    {
    if (highLight)
    {
      tableRow.style.backgroundColor = '#D1CEC3';
	  tableRow.style.cursor = 'pointer';
    }
    else
    {
      tableRow.style.backgroundColor = '#ffffff';
    }
  }

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