﻿// JScript File
function highlight(tableRow, active)
{
    if (active)
    {
        tableRow.style.backgroundColor = '#C0FFC0';
    }
    else
    {
        tableRow.style.backgroundColor = '#fff';
    }
}


