var fDesc=new Array();
fDesc[0] = "Withdata AccessToExcel - Tool for exporting Access data to Excel.
Withdata AccessToExcel - Export Access to Excel easy and quickly. Withdata AccessToExcel is a tool to export Access data to Excel file.
Withdata AccessToExcel is convenient:
1. Easy visually config, just click on the mouse.
2. Displaying Progress, time estimation.
3. Saving and loading session parameters, let you repeat your task easily.
Withdata AccessToExcel is powerful:
1. Export from both table and query.
2. Export all tables data to Excel at once.
3. Command line and schedualed, automate your exporting task.";
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 = '';
}
}