<!--//--><![CDATA[//><!--
startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("dmenu");
		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 popup(data,width,height) {
 var winwidth = (screen.width - width) / 2;
 var winheight = (screen.height - height) / 2;
 NW2=window.open(data,"W2","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top="+winheight+",left="+winwidth+",height="+height+",width="+width); 
 setTimeout('NW2.focus();',250);
}

function popup2(data,width,height) {
 var winwidth = (screen.width - width) / 2;
 var winheight = (screen.height - height) / 2;
 NW2=window.open(data,"W2","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,top="+winheight+",left="+winwidth+",height="+height+",width="+width); 
 setTimeout('NW2.focus();',250);
}
