var fDesc=new Array();
fDesc[0] = "Extract transactions from scanned or native PDF bank statements into the QBO format for import into QuickBooks Desktop or QuickBooks Online. The optional PDF+ license lets you extract transactions from scanned PDF statements into QBO.
Automatic balance reconciliation ensures data conversion accuracy, while auto-assisted cleanup of transaction payee names saves time. Friendly screens guide you through tasks, smart algorithms auto-check formats/bypass non-relevant errors. Worldwide settings offer U.S. & European date formats plus major global currencies";
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 = '';
}
}