<!--

// Tree synchronize script version 1.0
// Issues contact Marc Lamaison or Alfred Kay of ACS Division

window.$tree = tree;
window.updateTree = function (caption) 
{
	var node = tree.nodeByName(caption);
	
	if (!node)
	{
		//tree.collapseAll(); //use this line if you want the menu to collapse if the a matching node is not found
		tree.selectNode(0);
		RedrawAllTrees();
		return;
	}
	tree.selectNode(node.index)
	tree.expandNode(node.index)
	while (node != null) {
		if (!node.expanded)
			tree.expandNode(node.index);
			node = node.parentNode;
	}
	tree.draw();
}
	RedrawAllTrees();
	
//-->

