﻿// Contains functions relating to radGrid operations
        
        
function RowDeselected(rowObj)
{
    this.GetCellByColumnUniqueName(rowObj, "ArrowColumn").getElementsByTagName("IMG")[0].style.display = "none";
}

function RowSelected(rowObj)
{
    this.GetCellByColumnUniqueName(rowObj, "ArrowColumn").getElementsByTagName("IMG")[0].style.display = "";
}



