var fDesc=new Array();
fDesc[0] = "Viobo MSSQL to MySQL Data Migrator is the simplest data migrator between MSSQL and MySQL.
The tool is compatible with most major versions of MSSQL and MySQL, including SQL Server 2000 to SQL Server 2008, MYSQL 3.5 to 5.2
Moreover the tool supports both oledb and odbc database provider.";
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 = '';
}
}