// JavaScript Documentvar arVersion = navigator.appVersion.split("MSIE")var version = parseFloat(arVersion[1])function fixPNG(myImage) {    if ((version >= 5.5) && (version < 7) && (document.body.filters))     {       var imgID = (myImage.id) ? "id='" + myImage.id + "' " : ""	   var imgClass = (myImage.className) ? "class='" + myImage.className + "' " : ""	   var imgTitle = (myImage.title) ? 		             "title='" + myImage.title  + "' " : "title='" + myImage.alt + "' "	   var imgStyle = "display:inline-block;" + myImage.style.cssText	   var strNewHTML = "<span " + imgID + imgClass + imgTitle                  + " style=\"" + "width:" + myImage.width                   + "px; height:" + myImage.height                   + "px;" + imgStyle + ";"                  + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"                  + "(src=\'" + myImage.src + "\', sizingMethod='scale');\"></span>"	   myImage.outerHTML = strNewHTML	      }}function startList() {	if (document.all&&document.getElementById) {		navRoot = document.getElementById("nav");		for (i=0; i<navRoot.childNodes.length; i++) {			node = navRoot.childNodes[i];			if (node.nodeName=="LI") {				node.onmouseover=function() {					this.className+=" over";				}				node.onmouseout=function() {					this.className=this.className.replace(" over", "");				}			}		}	}}function MM_openBrWindow(theURL,winName,features) { //v2.0 mod by Paul  newwind = window.open(theURL,winName,features);  newwind.focus();}
