var fDesc=new Array();
fDesc[0] = "Data Wizard for MySQL is a powerful Windows GUI utility for managing your MySQL data. It provides you with a number of easy-to-use tools for performing the required data manipulation easily and quickly.
Main Features:
- Data Pump: transfer any schema and data to MySQL
- Data export to as many as 18 file formats
- Data import from Excel, CSV, text files and more
- ASP.NET Generator: create full set of ASP.NET scripts
- Flexible Task Scheduler
- The Agent application to execute tasks in background mode
- Powerful command-line interface";
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 = '';
}
}