function focusTree(arrSourceIndex)
{
var arr = arrSourceIndex.split("_");
for(var i=0;i<arr.length-1;i++)
expandNode(arr[i]+"_"+arr[i+1]);
}
function expandNode(sourceIndex)
{
try
{
var expandId =  tree.getAttribute(tree.nodes[sourceIndex],"index");
tree.focusClientNode(expandId);
if (!tree.node[expandId].isExpand)
tree.newExpand(expandId);
}
catch(e){}
}
focusTree("0_1_320");