var fDesc=new Array(); fDesc[0] = "Cashbook Lite records all income and expense transactions for any number of bank accounts.
Main features:
- Transaction Import: no need to type all those transactions in. Just import your bank statement directly from your bank.
- GST/VAT Reporting: special support for New Zealand GST, Australian GST, UK VAT and any other country with a similar tax scheme.
- Graphs and Reports- loads of graphs and reports so you can track your progress at a glance.
- Phone Book : keep a record of all your important contact details"; 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 = ''; } }