var fDesc=new Array(); fDesc[0] = "Program Tree Editor is a small text editor that lets you view texts of files in a tree manner. Program Tree Editor does direct translation file's text to a tree when it opens files and back translation when it saves files.
Program Tree Editor lets you directly manipulate nodes in tree without risk to damage the tree structure. With Program Tree Editor you can fast, comfortable and safely create, add, move, delete and copy nodes.
Also in Program Tree Editor edits nodes easy, like in a usual text editor. While you type the text, Program Tree Editor will update the tree automatically on the current language rules."; 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 = ''; } }