﻿function RowOnMouseOver(e) {

    e.style.backgroundColor = '#000000';
    e.style.color = '#FFA500';
    e.style.cursor = 'pointer';
}

function RowOnMouseOut(e) {
    e.style.backgroundColor = '#FFFFFF';
    e.style.color = '#000000';
    e.style.cursor = 'default';
}

function RowOnMouseOutColor(e, outColor) {
    e.style.backgroundColor = '#FFFFFF';
    e.style.color = outColor;
    e.style.cursor = 'default';
}

function RowOnMouseOutColorWithBackground(e, outColor, outBack) {
    e.style.backgroundColor = outBack;
    e.style.color = outColor;
    e.style.cursor = 'default';
}

function RowOnMouseClick(e) {
    e.style.backgroundColor = '#3764A8';
}
