function hilite(boxElement, titleElement, bgColor)
{
	var boxObj = document.getElementById(boxElement);
	var titleObj = document.getElementById(titleElement);

	boxObj.style.borderColor = bgColor;
	titleObj.style.backgroundColor = bgColor;
}