
function switchToLight(cellname)
{
		var Cellhead = document.getElementById(cellname);
		Cellhead.style.background="#CCCC99";
}

function switchBack(cellname)
{
	var Cellhead = document.getElementById(cellname);
	Cellhead.style.background="#999966";

}

function changeTextColor(cellname)
{
  var AboutCellHead = document.getElementById(cellname);
	AboutCellHead.style.color="#666633"
}

function changeTextColorBack(cellname)
{
    var AboutCellHead = document.getElementById(cellname);
		AboutCellHead.style.color="#FFFFFF"
}
