function ColorRow(item)
{
	item.style.backgroundColor='#f5f5f5'; }

function RestoreColor(item, color)
{
	if(item.bgColor == '')
		item.style.backgroundColor='white';
	if(color != '')
		item.style.backgroundColor = color;
	else
		item.style.backgroundColor=item.bgColor;
}
