<!--
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 AddToFavorites(url,title) 
  { 
    if (window.sidebar) // Mozilla Firefox Bookmark		
    { 
      window.sidebar.addPanel(title, url,"");	
    } 
    else if(window.external)  // IE Favorite		
    { 
      window.external.AddFavorite( url, title); 
    }	
    else if(window.opera && window.print) // Opera Hotlist		
    { 
      return true; 
    } 
  }




function openPopup(url,name,eigenschaften)
{
        var win;
        win=window.open(url,"name",eigenschaften);
        win.focus();
        return false;
}
//-->