		if (isSafari)
			fw$('adjustFontSize').hide();
		function increaseFontSize(what,mHeight,firstTimeIn) {
			if (checkDebug("debugfontsize"))
				alert("Increasing font size");
			if (typeof wssPath == 'undefined')
				wssPath = "unknown";
			//if (firstTimeIn)
			//	if (typeof logWebSideStory != 'undefined')
			//		logWebSideStory("nt","fontSize/increase/" + wssPath,document.title,null,null,getCookie("nthp"),null,null,null,getCookie("ut"));
			if ((what.nodeType == null || what.nodeType != 3) && (what.nodeName != '#text' && what.nodeName != '#comment') && parseInt(fw$(what).getStyle("fontSize").replace(/px/,'')) > 0) {
				var fontUnit = what.getStyle("fontSize").replace(/[0-9.]*/g,'');
				var newFontSize = "";
				if (fontUnit == 'px')
					newFontSize = (parseInt(what.getStyle("fontSize").replace(/px/,'')) + 2) + "px";
				else
					newFontSize = (parseInt(what.getStyle("fontSize").replace(/px/,'')) + 1) + fontUnit;

//				fw$("debugFontSize").innerHTML +=  " + Old: " + what.getStyle("fontSize") +  " New: " + newFontSize;
//				fw$("debugFontSize").innerHTML += " result: " + what.getStyle("fontSize") + "<br>";
				for (var i = 0; i < what.childNodes.length; i++) {
					increaseFontSize(what.childNodes[i],false);
					if (mHeight != '') {
						matchHeight(mHeight,10);
					}
				}
				what.style.fontSize = newFontSize;
			}
			fw$("imgDecreaseFont").src = "http://www.middlefieldbank.com/parts/fontsize_minus_active.gif";
			return;
		}
		function decreaseFontSize(what,mHeight,firstTimeIn) {
			if (checkDebug("debugfontsize"))
				alert("Decreasing font size");
			if (typeof wssPath == 'undefined')
				wssPath = "unknown";
			//if (firstTimeIn)
			//	if (typeof logWebSideStory != 'undefined')
			//		logWebSideStory("nt","fontSize/increase/" + wssPath,document.title,null,null,getCookie("nthp"),null,null,null,getCookie("ut"));
			if ((what.nodeType == null || what.nodeType != 3) && (what.nodeName != '#text' && what.nodeName != '#comment') && parseInt(fw$(what).getStyle("fontSize").replace(/px/,'')) > 0) {
				var fontUnit = what.getStyle("fontSize").replace(/[0-9.]*/g,'');
				var rxFontUnit = new RegExp(fontUnit);
				var newFontSize = what.getStyle("fontSize");
				if (fontUnit == 'px') {
					if (parseInt(what.getStyle("fontSize").replace(/px/,'')) > 6) {
						newFontSize = (parseInt(what.getStyle("fontSize").replace(/px/,'')) - 2) + "px";
					}
				} else {
					if (parseInt(what.getStyle("fontSize").replace(/pt/,'')) > 4) {
						newFontSize = (parseInt(what.getStyle("fontSize").replace(/pt/,'')) - 1) + fontUnit;
					}
				}
//				fw$("debugFontSize").innerHTML +=  " - Old: " + what.getStyle("fontSize") +  " New: " + newFontSize;
//				fw$("debugFontSize").innerHTML += " result: " + what.getStyle("fontSize") + "<br>";
				for (var i = 0; i < what.childNodes.length; i++) {
					decreaseFontSize(what.childNodes[i],false);
					if (mHeight != '') {
						matchHeight(mHeight,10);
					}
				}
				what.style.fontSize = newFontSize;
			}
			fw$("imgDecreaseFont").src = "http://www.middlefieldbank.com/parts/fontsize_minus_active.gif";
			return;
		}
