	function activateSecondNav(activeNode) {
		var navRoot;
		var node;
		
		if(document.getElementById("secondNav")) {
			navRoot = document.getElementById("secondNav");
			
			for(i = 0; i<navRoot.childNodes.length; i++) {
				node = navRoot.childNodes[i];
				
				if(node.nodeName == "LI" && node.id == activeNode) {
					node.className = "active";
					break;
				}
			}
		}
	}	
	
	function openWindow(inURL) {
		var win = window.open(inURL,"mywindow","width=825,height=600,scrollbars=yes,resizable=yes,status=no");
	}
