
function fDoRowHighlight (obj, sState) {
	if (sState == true) {
		obj.className = "tr_RowHighlight";
	}
	else {
		obj.className = "";
	}
}