// JavaScript Document

<!--//
	// FUNCTION 		highlight()
	// PARAMETERS		lngCell1 (long), lngCell2 (long), blnHighlight (boolean)
	// AUTHOR				Russ Back
	// PURPOSE			Switches the CSS class of 2 table cells

	function highlight (lngCell1, lngCell2, blnHighlight) {
		// check for netscape 4
		var blnNs4 = (document.layers && !document.getElementById) ? true:false;
		// default to inactive state
		var strClassName = "";
		// assign class name if highlight/active state requested
		if (blnHighlight) strClassName = "trans_highlight";
		// if not NS4
		if (! blnNs4) {
			// highlight cells
			document.getElementById("lat_" + lngCell1).className = strClassName;
			document.getElementById("eng_" + lngCell2).className = strClassName;
			}
		}
			
//-->
