var fDesc=new Array(); fDesc[0] = "EasyStructure is a tool designed to analyze C source files and display the structure of the source code in a hierarchical tree view and flowchart. Once the source has been parsed the tree view can be browsed, and flowcharts made, to gain an understanding of the code. A tree node may be expanded so as to show any contained statements of various types (e.g. jump type, return type)."; 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 = ''; } }