<!-- Hide from non-scriptable browsers.
 // Flight Of The Phoenix World Peace 2000 Web Site Scripts


function getObject(objectId) {
    // cross-browser function to get an object given its id.
    if(document.getElementById && document.getElementById(objectId)) 
    {
	// W3C DOM
	return document.getElementById(objectId);
    }
    else if (document.all && document.all(objectId)) 
    {
	// MSIE 4 DOM
	return document.all(objectId);
    }
    else if (document.layers && document.layers[objectId]) 
    {
	// NN 4 DOM.. note: this won't find nested layers
	return document.layers[objectId];
    } 
    else
    {
	return false;
    }
} // getObject



function isNetscape()
{
    if(navigator.appName=='Netscape')
    {
	return (true); 
    }
    else
    {
	return (false);
    }
}

function highlightFontFor(obj,bHighlight)
{
    // Only Netscape Navigator and Apple Safari allow font style changes in their DOM.
    if(isNetscape())
    {
	if(bHighlight)
	{
	    obj.style.fontWeight = 'bold';
	}
	else
	{
	    obj.style.fontWeight = 'normal';
	}
    }
    else
    {
	if(bHighlight)
	{
	    obj.style.backgroundColor='aliceblue';
	}
	else
	{
	    obj.style.backgroundColor='white';
	}
    }
}


function mouseOverFor2(obj,overClass,offClass,isOver)
{
    if (obj)
    {
	if (!obj.className)
	{
	    obj.className = String;
	}
	if (isOver)
	{
	    // Select this obj.
	   obj.className = overClass;
	}
	else
	{
	    // Unselect this obj.
	    obj.className = offClass;
	}
    }
}


function mouseOverFor(obj,objOver,bHighlight)
{
    // Only Netscape Navigator and Apple Safari allow font style changes in their DOM.
    if(obj.style)
    {
	if(obj.style.fontWeight)
	{
	    if(bHighlight)
	    {
		obj.style.fontWeight = 'bold';
	    }
	    else
	    {
		obj.style.fontWeight = 'normal';
	    }
	}
	else if(obj.style.visibility)
	{
	    if(bHighlight)
	    {
		obj.style.visibility = 'hidden';
		objOver.style.visibility = 'visible';
		obj.style.zIndex = '2';
		objOver.style.zIndex = '3';
	    }
	    else
	    {
		objOver.style.visibility = 'hidden';
		obj.style.visibility = 'visible';
		objOver.style.zIndex = '2';
		obj.style.zIndex = '3';
	    }
	}
	else
	{
	    if(bHighlight)
	    {
		// If the object has a normal background colour then store it.
		if(obj.style.backgroundColor)
		{
		    myBackgroundColour = obj.style.backgroundColor;
		}
		else
		{
		    myBackgroundColour = 'transparent';
		}

		// Set the highlight colour.
		obj.style.backgroundColor = 'orange';
	    }
	    else
	    {
		// Reset it to normal value.
		obj.style.backgroundColor = myBackgroundColour;
	    }
	}
    }
}


// End hiding  -->





