var fDesc=new Array();
fDesc[0] = "With Small Business Money Manager business owners can track their finances and manage their cash flow. Small Business Money Manager analyses your bank statements, and then presents the business owner with an overview of their finances in a simple and user friendly format.
You can:
* Sort and view transactions.
* Track income and expenditure.
* Manage your cashflow with the cashflow tool
* Customise budgets and create graphs.
* Create personalised financial records.
* Calculate your loan repayment and see what you would save if you were to pay a little extra each month.";
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 = '';
}
}