function displayNode(theID, parent) {
	//document.getElementById(theID).style.display="block";
}

function hideNode(theID) {
	document.getElementById(theID).style.display="none";
}