startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("navi");
		
		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", "");
				}
			}
		}
	 }
}
window.onload=startList;


function openPop(url,name,arg) {
  window.open(url,name,arg);
}

function winOpen(url, breite, hoehe) {
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popupPic","height=320,width=410,status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = yes,fullscreen = no,top ="+oben+",left ="+links);
  }
	
function newWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

