var fDesc=new Array(); fDesc[0] = "NoteTree helps you organize your thoughts in a top-down view.
Write the way you think, from general to specific, with interrelated links. Also the program's settings can be customized to meet your needs. Print your notes for easy reference, or export them for use in a variety of other applications.
The program allows you to build your understanding as you build your tree."; 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 = ''; } }