// JavaScript Document
  <!--
    function loadTheDocument()
    {
		SearchHighlight();
        document.searchhi.h.value = searchhi_string;
        // Just incase MSIE gets confused
		if( location.hash.length > 1 ) location.hash = location.hash;
		//alert(location.hash);
    }

    function setCell(theCell, eventColor, theNormalBgColor)
    {
	    if (eventColor == '' || typeof(theCell.style) == 'undefined') {
            return false;
        }
        var currentColor = null;
        var newColor = null;

        currentColor = theCell.style.backgroundColor;
        newColor     = (currentColor.toLowerCase() == eventColor.toLowerCase())
                     ? theNormalBgColor
                     : eventColor;
        theCell.style.backgroundColor = newColor;

        return true;
    } // end of the 'setCell()' function
  // -->
 