	function 	ChangeTDColors(oTR, State) 	{
		for (i=0;i<oTR.cells.length;i++)	{
			if(State) {
				oTR.cells[i].style.backgroundColor = "#dedeef"; //  #ededf6
				oTR.cells[i].style.color = "Black";
			}	else	{
				oTR.cells[i].style.backgroundColor = "White";
				oTR.cells[i].style.color = "Black";
			}
		}
	}	
