﻿	origColor = "";
	function hilite(divId, YN, colo){
		if(! colo){ colo = "red";}
		if(YN == "Y"){
			origColor = document.getElementById(divId).style.color;
			//bcolor = document.getElementById(divId).style.backgroundColor;
//			document.getElementById(divId).style.backgroundColor = "#FF0000";
			document.getElementById(divId).style.color = colo;
			document.getElementById(divId).style.cursor = "help";
		} else if(YN == "N"){
			document.getElementById(divId).style.color = origColor;
			document.getElementById(divId).style.cursor = "default";
		}
	}
