﻿function hiLightBg(id)
{
 	document.getElementById(id).style.backgroundColor='#ffffc8';
}

function removeHiLightBg(id)
{
	document.getElementById(id).style.backgroundColor='#ffffff';
}