function highlight(sId)
{
	document.getElementById(sId).style.backgroundColor = "#a2a868";
}

function unhighlight(sId)
{
	document.getElementById(sId).style.backgroundColor = "transparent";
}