function hiLite(id,color) {
	if (document.all) {
		document.all[id].style.color = color;
	}
	if (document.layers) {
		return false;
	}
	else {
	document.getElementById(id).style.color = color;
	}
}
