var fDesc=new Array();
fDesc[0] = "This program allows the user to easily import their credit card charges and credits into QuickBooks in just a few clicks. It supports the reading of all standard online banking download formats such as Quicken (.qif or .qfx), Money(.ofx) and Excel (.csv, .xls, .xlsx). It is more than just a file converter, it’s an integrated application with QuickBooks. In just three simple steps, it transfers your credit card charges and credits o your QuickBooks bank register.";
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 = '';
}
}