function highlight(id)
{
	document.getElementById(id).style.backgroundColor = "#F7F4E8"; 
}

function dehighlight(id) 
{
	document.getElementById(id).style.backgroundColor = "transparent"; 
}

