
<!-- Begin
var NS4 = (document.layers);
var IE4 = (document.all);
var win = this;
var n = 0; 
function findInPage(str) 
{
var txt, i, found; 
if (str == "")
return false; 
if (NS4) 
{
if (!win.find(str)) 
while(win.find(str, false, true)) 
n++;
else
n++;
if (n == 0) alert(str + " was not found on this page.");
}
if (IE4)
{
txt = win.document.body.createTextRange();
for (i = 0; i <= n && (found = txt.findText(str)) != false; i++)
{
txt.moveStart("character", 1);
txt.moveEnd("textedit");
}
if (found)
{
txt.moveStart("character", -1); 
txt.findText(str); 
txt.select();
txt.scrollIntoView();
n++;
}
else
{
if (n > 0)
{
n = 0;
findInPage(str);
}
else
alert(str + " was not found on this page.");
}
}
return false; 
}
function initialize()
{
comboobj=document.all? document.all.staticcombo : document.getElementById? document.getElementById("staticcombo") : document.layers? document.staticcombo : 0
windowwidth=window.innerWidth? window.innerWidth-30 : document.body.clientWidth-20
windowheight=window.innerHeight? window.innerHeight : document.body.clientHeight
if (!comboobj) 
return
if (document.all || document.getElementById) 
{
combowidth=comboobj.offsetWidth
comboheight=comboobj.offsetHeight
setInterval("staticit_dom()",50) 
comboobj.style.visibility="visible" 
}
else if (document.layers) 
{
combowidth=comboobj.document.width
comboheight=comboobj.document.height
setInterval("staticit_ns()",50) 
comboobj.visibility="show"
}
}
function staticit_dom()
{
var pageoffsetx=document.all? document.body.scrollLeft : window.pageXOffset
var pageoffsety=document.all? document.body.scrollTop : window.pageYOffset
comboobj.style.left=pageoffsetx+windowwidth-combowidth
comboobj.style.top=pageoffsety+windowheight-comboheight
}
function staticit_ns()
{
comboobj.left=pageXOffset+windowwidth-combowidth
comboobj.top=pageYOffset+windowheight-comboheight
}
window.onload=initialize

function convertPreBlocks() {}

var regular = "x-small";

function bigger(thing)
{

	thing.style.fontSize = "large";
	siblingElement = thing.previousSibling;
	while(siblingElement) 
	{
		if(siblingElement.tagName=="SPAN") 
		{
			siblingElement.style.fontSize = "medium";
			break;
		}
		siblingElement = siblingElement.previousSibling;
	}

	siblingElement = thing.nextSibling;
	while(siblingElement) 
	{
		if(siblingElement.tagName=="SPAN") 
		{
			siblingElement.style.fontSize = "medium";
			break;
		}

		siblingElement = siblingElement.nextSibling;
	}
}

function normal(thing)
{

	thing.style.fontSize = regular;
	siblingElement = thing.previousSibling;
	while(siblingElement) 
	{
		if(siblingElement.tagName=="SPAN") 
		{
			siblingElement.style.fontSize = regular;
			break;
		}
		siblingElement = siblingElement.previousSibling;
	}
	siblingElement = thing.nextSibling;
	while(siblingElement) 
	{
		if(siblingElement.tagName=="SPAN") 
		{
			siblingElement.style.fontSize = regular;
			break;
		}
		siblingElement = siblingElement.nextSibling;
	}
}
//  End -->
