/*startList = function() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("SectionMenu");
		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;

var client_win = null;
function popClient(url) {
        client_win = window.open(url, 'clientWin', 'width=630,height=400,toolbar=no,scrollbars=no,scrolling=no,statusbar=no,resizable=no');
        if (window.focus) client_win.focus();
}

*/
