function changeImage(name,control) {
if (theBrowser == "goodbrowser" && document.images) {
	if (eval("document.images[name]")!=null){
	document.images[name].src = eval(control + ".src");
			}
	}
}

function header_DoFSCommand(command, args) {
  if (command == "changeFontSize") {
	dw_fontSizerDX.adjust(parseInt(args));
  }
  if (command == "resetFontSize") {
	dw_fontSizerDX.reset();
  }
  if (command == "printSpecial") {
	printSpecial();
  }
}

<!--//--><![CDATA[//><!--
sfHover = function() {
	if (document.all&&document.getElementById){
		var ieMat = document.createElement('iframe');
		var sfEls = document.getElementById("nav").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) { 
			if (sfEls[i]){
				sfEls[i].onmouseover=function() {
					var ieUL = this.getElementsByTagName('ul')[0];
					if (ieUL) {
		                ieMat.style.width=ieUL.offsetWidth+"px";
		                ieMat.style.height=ieUL.offsetHeight+"px"; 
						ieMat.style.display="block";
		                ieUL.insertBefore(ieMat,ieUL.firstChild);
		                ieUL.style.zIndex="99";
		            }
					this.className+=" sfhover";
					//hideDropdowns(this.getElementsByTagName("UL")[0],true);
				}
			}
			sfEls[i].onmouseout=function() {
				var ieUL = this.getElementsByTagName('ul')[0];
				//if (ieUL) { 
				//	ieUL.removeChild(ieUL.firstChild); 
				//}
				this.className=this.className.replace(new RegExp(" sfhover"), "");
				//hideDropdowns(this.getElementsByTagName("UL")[0],false);
			}
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]> 
