﻿function ChangeColor(tableRow, highLight)
{
    if (highLight)
    {
      tableRow.style.backgroundColor = '#ffeacb';
      tableRow.style.color = 'red';
      tableRow.style.cursor = 'hand';
    }
    else
    {
      tableRow.style.backgroundColor = '#ffffff';
      tableRow.style.color = '#003C79';
    }
}

function ChangeColor2(tableRow, highLight)
{
    if (highLight)
    {
      tableRow.style.backgroundColor = '#ffeacb';
      tableRow.style.color = 'red';
      tableRow.style.cursor = 'hand';
    }
    else
    {
      tableRow.style.backgroundColor = '#dbe8f2';
      tableRow.style.color = '#003C79';
    }
}

function DoNav(theUrl)
{
    window.open(theUrl, '_self')
}
