var fDesc=new Array();
fDesc[0] = "MysqlToAccess is a data conversion tool that helps DBA and database programmer export Mysql data to Access.
Main features:
-Easy visually config, just click on the mouse.
-Displaying Progress, time estimation.
-Saving and loading session parameters, let you repeat your task easily.
-Preview and seeing results immediately.
-Wizard, Step by step.
-Exports from both table and query.
-Exports multiple tables in one time.
-Support Unicode.
-Command line and scheduled, 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 = '';
}
}