// Java Document
sfHover = function() {
	var sfEls = document.getElementById("nav").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);




function go_new_window(url){		
	var win;   
	win = open(url,"","location=no,directories=no,top=0, left=0,width=600,height=530,scrollbars=1,toolbar=1,resizable=0");
	win.focus();	
}