startList = function() {
	if (document.all&&document.getElementById) {
	navRoot = document.getElementById("navi");
	//navRoots1 = document.getElementById("navs1");
	//navRoots2 = document.getElementById("navs2");
	//navRoots3 = document.getElementById("navs3");
		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", "");
				}
			}
		}
		
		if ( document.getElementById("navs1") ) {
		navRoots1 = document.getElementById("navs1");
		for (i=0; i<navRoots1.childNodes.length; i++) {
		nodes1 = navRoots1.childNodes[i];
			if (nodes1.nodeName=="LI") {
				nodes1.onmouseover=function() {
				this.className+=" over";
				}
				nodes1.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
		}
		
		if ( document.getElementById("navs2") ) {
		navRoots2 = document.getElementById("navs2");
		for (i=0; i<navRoots2.childNodes.length; i++) {
		nodes2 = navRoots2.childNodes[i];
			if (nodes2.nodeName=="LI") {
				nodes2.onmouseover=function() {
				this.className+=" over";
				}
				nodes2.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
		}
		
		if ( document.getElementById("navs3") ) {
		navRoots3 = document.getElementById("navs3");
		for (i=0; i<navRoots3.childNodes.length; i++) {
		nodes3 = navRoots3.childNodes[i];
			if (nodes3.nodeName=="LI") {
				nodes3.onmouseover=function() {
				this.className+=" over";
				}
				nodes3.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
		}
		
		if ( document.getElementById("navs4") ) {
		navRoots4 = document.getElementById("navs4");
		for (i=0; i<navRoots4.childNodes.length; i++) {
		nodes4 = navRoots4.childNodes[i];
			if (nodes4.nodeName=="LI") {
				nodes4.onmouseover=function() {
				this.className+=" over";
				}
				nodes4.onmouseout=function() {
				this.className=this.className.replace(" over", "");
				}
			}
		}
		}
		
		
	}
}

window.onload=startList;

function NewPopupWindow(mypage,myname,w,h,scroll){
    LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
    TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
    settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable,menubar'
	win = window.open(mypage,myname,settings)
	
}

