 
var oMouseoverTR;
function changeRowColor(obj,flag)
{
	if (oMouseoverTR!=null)
	{	oMouseoverTR.style.backgroundColor='';
	}

	if (flag==0)
	{	
		if (obj!=null)
		{	oMouseoverTR=obj;
		}
		var color='#A6D2FF';
		if(document.all)
		{	if(obj.style.backgroundColor=='')
			{	obj.style.backgroundColor=color;
			}
			else
			{	obj.style.backgroundColor='';
			}
		}
	}
}
 