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