var fDesc=new Array();
fDesc[0] = "DBF-to-MySQL is a program to migrate FoxPro/DBase databases to MySQL server. Key features:
(1) all formats of FoxPro/DBase files are supported;
(2) all versions of Linux/Unix and Windows MySQL servers are supported;
(3) option to customize resulting table structure;
(4) support for large .dbf files (4GB+);
(5) option to merge DBF data into an existing MySQL database;
(6) option to export DBF data into MySQL dump file;
(7) all DBase encodings are supported;
(8) stores conversion settings into profile;
(9) command line support;
(10) easy-to-use wizard style interface;
(11) full install/uninstall support;
(12) unlimited 24/7 support service;
(13) 1-year subscription for updates";
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 = '';
}
}