var fDesc=new Array(); fDesc[0] = "Syntax Tree Editor is a utility for drawing syntax tree diagrams. A syntax tree diagram is a visual representation of the structure of a sentence. The people who most often need to draw these diagrams are linguists, and the Syntax Tree Editor is designed with the needs of linguists in mind."; 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 = ''; } }