
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");	// offenbar Gross oder Kleinschr. egal
	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);
	// install eventhandler für "onload" ! Diese Zeile steht unten
	// wegen IE ??!!




function email_window(url){
 //var url="http://proxy2.bootschaft.de/sh.de/EM/verwaltung.php";

 var opt="dependent=0,scrollbars=0,toolbar=0,directories=0,location=0,locationbar=0,menubar=0,status=0";
 email_win = window.open(url, "emlw", "width=500,height=420,"+opt+",screenX=200,screenY=100");
 email_win.focus();
}
