var fDesc=new Array();
fDesc[0] = "XS2CSV Converter is an application that is capable of converting a batch of Microsoft Office Excel files to comma-delimited files without the need for Microsoft Office.
Support for multiple Microsoft® Excel® file types:
- .xls (Microsoft® Excel® 97, 2003).
- .xlsx (Microsoft® Excel® 2007, 2010 ).
- .xlsm (macro-enabled Microsoft® Excel® 2007, 2010 ).";
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 = '';
}
}