	<!--//--><![CDATA[//><!--
	
	sfHover = function() {
		var sfEls = document.getElementById("navbox").getElementsByTagName("LI");
		for (var i=0; i<sfEls.length; i++) {
			sfEls[i].onmouseover=function() {
				this.className+=" sfhover";
			}
			sfEls[i].onmouseout=function() {
				this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
			}
		}
	}
	if (window.attachEvent) window.attachEvent("onload", sfHover);
	
	//--><!]]>// JavaScript Document
	
	function popup_standardNR (url,name,width,height,scroll) {

		win = window.open(url,name,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + scroll + ',resizable=1,width=' + width + ',height=' + height);
		win.focus();

	}