var fDesc=new Array();
fDesc[0] = "MySQL Service Center is a multi-functional Windows GUI utility for MySQL server maintenance and data reservation. MySQL Server Center allows you to create tasks for backing your data into a script, restoring data from a script, analyzing, checking, repairing and optimizing database tables. In addition to these functions, MySQL Server Center provides you with the following features:
- MySQL 4.1/5.0 support;
- task explorer with possibility to maintain several host at a time;
- possibility of backing data from a remote database host;
- optional possibility of compressing result script after data backup;
- possibility of restoring data from compressed scripts;
- internal task scheduler;
- task scenarios;
- possibility to connect through the SSH tunnel;
- and many more.";
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 = '';
}
}