﻿function gridOnMouseOver(row)
{
    row.style.backgroundColor = '#ffffe1';
}

function gridOnMouseOut(row)
{
    row.style.backgroundColor ='#F7F6F3';
}

function gridOnMouseOutAlternate(row)
{
    row.style.backgroundColor ='white';
}

function checkoncheck(row,gridtdname)
{
    var arrmyinput = gridtdname.getElementsByTagName("input");
    arrmyinput[row].checked=!arrmyinput[row].checked;
}
