var fDesc=new Array();
fDesc[0] = "Do you need to move your data to mySQL???? dbQwikSync2 is a lightweight easy to use data migration wizard that will save you hours of frustration trying to move data to your mySQL server. How does it work? 1)-Select you source local database 2)Select your target MySQL database 3)Pick the tables to move 4)Click Sync! Highlight Features are: Easy to Use, Step-by-Step Wizard Interface; Sync data from all: Access, Excel, dBase, Froxpro, Paradox and MS SQL; Creates tables and indexes as needed;Automatically converts data types to closest compatible type; Review data structures and table contents before moving; Run on-line or you can save SQL scripts to run later; Report Log of Move. Data Freshen Modes: Move No Records (just create the tables & Indexes); -Add New Records; Update Matching Records; Add and Update";
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 = '';
}
}