﻿var lastColor; 
function DG_changeBackColor(row, highlight) 
{ 
    if (highlight) 
    { 
        row.style.cursor = "hand"; 
        lastColor = row.style.backgroundColor; 
        row.style.backgroundColor = 'lavender'; 
    } 
    else 
        row.style.backgroundColor = lastColor; 
} 

function fnHighlightRow(oRow)
{
	oRow.style.backgroundColor=="lavender";
}		
//
function fnnutchangecolor(obj,mouseaction)
{
    if (mouseaction)
    {
        obj.style.cursor = "hand"; 
        obj.style.backgroundColor = "#96380F"; 
    }
    else
        obj.style.backgroundColor="#CE772E";
}
