var fDesc=new Array();
fDesc[0] = "Convert your Excel, Access, DBF, CSV files to different formats with ease.
Every converter works as a standalone application with the graphic interface or using a command line interface. Various options allow you to customize the output file. The Expert mode allows you to automatize everyday's routine operations.
It supports CSV to Excel, DBF;
Excel to DBF, CSV, JSON;
Access to Excel, DBF, CSV;
DBF to Excel, Access, CSV, DBF, JSON, SQL;
Both 32-bit and 64-bit versions are available.
The 64-bit versions can handle large files and work faster on modern systems.";
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 = '';
}
}