/* This file implements the technique described at http://alistapart.com/articles/dropdowns/ */startList = function() {	navRoot = document.getElementById("dropdown");	if(!navRoot) return;	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.all&&document.getElementById)	window.onload = startList;		<!-- Beginfunction popUp(URL) {day = new Date();id = day.getTime();eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width=796,height=590,left = 256,top = 217');");}// End --><!-- Beginfunction popUp2(URL) {day = new Date();id = day.getTime();eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=796,height=600,left = 256,top = 217');");}// End -->