var fDesc=new Array();
fDesc[0] = "Export any or all of your QuickBooks data to MySQL. Very useful when creating custom reports that QuickBooks does not offer. Set this application to run during off-hours to get up-to-date QuickBooks data.
Windows MySQL v4.0 & MyODBC v3.51 required. Compatibale with QuickBooks 2002-2008 and Windows 2000 SP4 and later.";
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 = '';
}
}