function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)

	if (parseInt(navigator.appVersion) >= 4) {
		win.window.focus();
	}
}

function goThere(myForm) {
	if (myForm.links.options[myForm.links.selectedIndex].value != "") {
		parent.location = myForm.links.options[myForm.links.selectedIndex].value;
	}
}

function display_announcement (message, headline) {
	var announcement = window.open("", "announcement", "scrollbars,height=300,width=300");
	announcement.document.write("<HTML><HEAD><LINK HREF=\"/include/styles.css\" REL=\"stylesheet\" TYPE=\"text/css\"></HEAD><BODY>");
	announcement.document.write("<SPAN CLASS=\"textBlackBold\">" + headline + "</SPAN><P><SPAN CLASS=\"textBlack\">" + message + "</SPAN><P><A HREF=\"javascript: self.close();\" CLASS=\"urlRedBold\">close</A>");
	announcement.document.write("</BODY></HTML>");
	announcement.focus();
}

<!--//--><![CDATA[//><!--
/*startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("nav");
		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;*/

//--><!]]>
