var fDesc=new Array(); fDesc[0] = "TreeIconDemo2 customizes certain leaf icons and also provides tool tips for certain tree nodes.
If you select any branch node in the tree it will appear a window. When you select a leaf node (a book), this pane displays an HTML file for that book. It uses a split pane to separate the tree and his HTML view. Drag the divider up or down to change the space distribution."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }