<!--
function hilite(cellName, newColor, textColor) 
{
	cellName.bgColor = newColor;

	if (textColor != null) {
		cellName.style.color = textColor;
	}
}
// -->


