var fDesc=new Array();
fDesc[0] = "XML:Wrench - The simple XML Editor. Is the easy to use tool for editing XML and related files. It can also be an HTML editor, an XHTML editor, a CSS Editor, an XSL style-sheet editor, a DTD editor and many more.
XML:Wrench also includes a number of XML tools for transforming and manipulating XML/HTML files. Use XML:Wrench to convert HTML to XML or to generate new XML/HTML from your XML source using XSL/XSLT style-sheets. This can be done one file-at-a-time or using a batch command on entire directories.
The XML:Wrench is a windows program and runs under Microsoft Windows 95 or later";
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 = '';
}
}