function HghLghtBg(Id)
{
	var i;
	for(i=0; i<=7; i=i+1)
		document.getElementById("Col"+i+Id).style.backgroundColor="#F3F0EB";
}
function ClearBg(Id)
{
	var i;
	for(i=0; i<=7; i=i+1)
		document.getElementById("Col"+i+Id).style.backgroundColor="";
}