var fDesc=new Array();
fDesc[0] = "FREE Graphical XML Schema Editor and XML Editor.
A fully featured XML Development Studio:
- Graphical and Text based XML Schema Editor
- XSD and XML Validation
- XPath Expression builder
- Web Service Explorer
- Intellisense for XML and XSD documents
- Syntax Highlighting
- XML Formatting
- Html Docs From XSD Schema
- XML Diff Tool
- XSLT Editor
- CSS Editor
- Fully compliant with the XSD standard
- FastInfoset Import/Export
- JSON Import/Export
- Features normally costing $$$";
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 = '';
}
}