<!--
if(window.event + "" == "undefined") event = null;
function HM_f_PopUp(){return false};
function HM_f_PopDown(){return false};
popUp = HM_f_PopUp;
popDown = HM_f_PopDown;
//-->





<!--

HM_PG_MenuWidth = 150;
HM_PG_FontFamily = "Tahoma, Verdana, Arial, Helvetica";
HM_PG_FontSize = 7;
HM_PG_FontBold = true;
HM_PG_FontItalic = 0;
HM_PG_FontColor = "blue";
HM_PG_FontColorOver = "blue";
HM_PG_BGColor = "#DDDDDD";
HM_PG_BGColorOver = "#FFCCCC";
HM_PG_ItemPadding = 2;

HM_PG_BorderWidth = 1;
HM_PG_BorderColor = "#0A597B";
HM_PG_BorderStyle = "solid";
HM_PG_SeparatorSize = 1;
HM_PG_SeparatorColor = "#d0ff00";

HM_PG_ImageSrc = "/images/HM_More_blue_right.gif";
HM_PG_ImageSrcLeft = "/images/HM_More_blue_left.gif";
HM_PG_ImageSrcOver = "/images/HM_More_blue_right.gif";
HM_PG_ImageSrcLeftOver = "/images/HM_More_blue_left.gif";
HM_PG_ImageSize = 5;
HM_PG_ImageHorizSpace = 0;
HM_PG_ImageVertSpace = 2;

HM_PG_KeepHilite = 1; 
HM_PG_ClickStart = 0;
HM_PG_ClickKill = false;
HM_PG_ChildOverlap = 20;
HM_PG_ChildOffset = 10;
HM_PG_ChildPerCentOver = null;
HM_PG_TopSecondsVisible = .5;
HM_PG_StatusDisplayBuild =1;
HM_PG_StatusDisplayLink = 1;
HM_PG_UponDisplay = null;
HM_PG_UponHide = null;
HM_PG_RightToLeft = 0;

HM_PG_CreateTopOnly = 0;
HM_PG_ShowLinkCursor = 1;
HM_PG_NSFontOver = true;

HM_PG_ScrollEnabled = true;
HM_PG_ScrollBarHeight = 14;
HM_PG_ScrollBarColor = "lightgrey";
HM_PG_ScrollImgSrcTop = "/images/HM_More_blue_top.gif";
HM_PG_ScrollImgSrcBot = "/images/HM_More_blue_bot.gif";
HM_PG_ScrollImgWidth = 9;
HM_PG_ScrollImgHeight = 5;

HM_PG_ScrollBothBars = true;

HM_PG_HoverTimeTop  = 700;
HM_PG_HoverTimeTree = 700;

//HM_a_TreesToBuild = [2,3]

//-->





function setPointer(theCell, thePointerBgColor, theNormalBgColor, thePointerColor, theNormalColor){

    if (thePointerBgColor == '' || typeof(theCell.style) == 'undefined') {return false; }

    var currentColor = null;
    var currentBgColor = null;
    var newColor     = null;
    var newBgColor     = null;
    // Opera does not return valid values with "getAttribute"
    if (typeof(window.opera) == 'undefined' && typeof(theCell.getAttribute) != 'undefined' && typeof(theCell.getAttribute) != 'undefined') {
        currentBgColor = theCell.getAttribute('bgcolor');
        currentColor = theCell.getAttribute('color');
        if(currentBgColor.toLowerCase() == thePointerBgColor.toLowerCase()){
			newBgColor = theNormalBgColor;
			newColor = theNormalColor;
		}
        else {
			newBgColor = thePointerBgColor;
			newColor = thePointerColor;
		}
        theCell.setAttribute('bgcolor', newBgColor, 0);
        theCell.setAttribute('color', newColor, 0);
    }
    else {
        currentBgColor = theCell.style.backgroundColor;
        currentColor = theCell.style.color;
        if(currentBgColor.toLowerCase() == thePointerBgColor.toLowerCase()){
			newBgColor = theNormalBgColor;
			newColor = theNormalColor;
		}
		else{
			newBgColor = thePointerBgColor;
			newColor = thePointerColor;
		}
	       theCell.style.backgroundColor = newBgColor;
	       theCell.style.color = newColor;
    }
    return true;
} // end of the 'setPointer()' function
//-->