var fDesc=new Array(); fDesc[0] = "This plug-in allows you to process any string or XML file (also HTML), gaining control over all the parts of which XML is composed. The appropriate events are executed when processing DTD attributes, CData content, text content, XML comments, DTD definitions (also external), start and end tags, and even "empty", annotations, process instructions, etc.

You will be able to process XML strings or files. And get complete information about the progress of the process. The plug-in includes three examples that show how to process an XML of books, another that processes an RSS file and, finally, another example that extracts the links from an HTML file."; 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 = ''; } }