
var RowColor; 
function OnMouseOverTR(obj)
{
RowColor=obj.style.backgroundColor;
obj.style.backgroundColor='#DFEFFF';//#FFFF00//DFEFFF

}
function OnMouseOutTR(obj)
{
//alert(RowColor)
obj.style.backgroundColor=RowColor;
}
