var fDesc=new Array();
fDesc[0] = "Exult Standard helps you shred XML and export the data to Microsoft Excel (XLS), Microsoft Access(MDB or ACCDB) or CSV.
Features:
* Automatically figures out relationships: Data tables are created with parent - child relationships mirroring the XML structure.
* Extract only the data you are interested in: After the XML file is loaded, you can preview the data and select the tables you want to export.
* Merge data from multiple XML files: Merge and extract the data from multiple XML files. Smart parsing will ensure the data will be merged according to the XML file structure. View a demo.
* Supports multiple export formats: Export data to Microsoft Excel (XLS), Microsoft Access (MDB or ACCDB), Comma-Separated Values(CSV), HTML or Text.
* Looking for batch conversions? Use the included command-line program to set-up automated conversions.
* Easy to use: With a familiar Wizard interface, extracting data from XML files could not be easier! No need to struggle with XSL stylesheets.";
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 = '';
}
}