function toggleMenu(objID) {
if (!document.getElementById) return;
var ob = document.getElementById(objID).style;
ob.display = (ob.display == 'block')?'none': 'block';
}

function getURL(URL) {
	this.location=URL;
}

function hideMenu(objID) {
var ob = document.getElementById(objID).style;
ob.display='none';
}



/*// Highlights the selected node
dTree.prototype.s = function(id) {
	var eOld; 
	if (!this.config.useSelection) return;
	var cn = this.aNodes[id];
	if (cn._hc && !this.config.folderLinks) return;
	if (this.selectedNode != id) {
		if (this.selectedNode || this.selectedNode==0) {
			//eOld = document.getElementById("s" + this.obj + this.selectedNode);
			//eOld.className = "node";
			eOld = document.getElementById("s" + this.obj + this.selectedNode);
			eOld.style.background = "#F8F8F8";
			//eOld.innerHTML="&nbsp;";
		}
		eNew = document.getElementById("s" + this.obj + id);
		//eNew.className = "nodeSel";
		//eOld.className = "dtree-sidebar-a";
		eNew.style.background = "#c0c0c0";
		
		this.selectedNode = id;
		if (this.config.useCookies) this.setCookie('cs' + this.obj, cn.id);
	}
};


	this.selectedNode = null;
	this.selectedFound = false;
*/

// JavaScript Document
