﻿var rowColor;

function HighlighterIn(color, control)
{
    rowColor = control.style.backgroundColor;
    control.style.backgroundColor = color;
    control.style.cursor = 'hand';
}
        
function HighlighterOut(control)
{
    control.style.backgroundColor = rowColor;
    control.style.cursor = 'hand';
}

