var fDesc=new Array(); fDesc[0] = "The XML Assistant is a XML Editor, that shows the content of XML files very clearly and allows easy editing. Instead of writing XML character by character, with it you change the contents using input fields. The XML struture is shown as a tree, its outlook is highly comfigurable. An example showing the capabilities can be found under the menu item "Help" in XML Assistant."; 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 = ''; } }