var fDesc=new Array();
fDesc[0] = "XPathVisualizer is a simple, free Winforms tool to help you visualize the results of XPath queries on XML documents.
Features:
- load the XML document from a filesystem file, from an HTTP URL, type it in, or paste (Ctrl-V).
- Easy scroll through the matched nodes of an XPath query
- strip XML namespaces from any document
- Remove matched nodes in the document";
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 = '';
}
}