function closeSelected(navRoot) {
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="DIV") {
			if (node.className == "sel") {node.className = ""}
		}
	}
}
startList = function() 
{
	navRoot = document.getElementById("l_menu");
	for (i=0; i<navRoot.childNodes.length; i++) {
		node = navRoot.childNodes[i];
		if (node.nodeName=="DIV") {
			node.onclick = function () {
				if (this.className == "sel") {this.className = ""}
				else {closeSelected(navRoot); this.className = "sel"}
			}
			for (j=0; j<node.childNodes.length; j++) {
				el = node.childNodes[j];
				if (el.nodeName=="DIV") {
					if (document.all&&document.getElementById) {
						el.onmouseover=function() { this.className+=" hover"; }
						el.onmouseout=function() { this.className=this.className.replace(" hover", ""); }
					}
				}
			}
		}
	}
}
window.onload=startList;

function popup(path,w,h) {
	window.open(path, '_blank', 'resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes, width='+w+', height='+h);
}

