var fDesc=new Array();
fDesc[0] = "MDB Exporter by dataconversiontools.com - Export data from MDB database files to CSV files.
Export data from your MDB database files directly into CSV files.
MDB Exporter is a windows program that runs on your windows PC.
MDB Exporter will save you hours and hours of time, and provide you with a quick and easy way to strip data from large files. All done safely to help avoid the need for data recovery services.";
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 = '';
}
}