var fDesc=new Array(); fDesc[0] = "This program is a fully functional money manager designed to help with your personal finances. It allows you to record your spending and reconcile against your Bank Accounts. You can set up spending targets and assign spending to various types of spend. It will automatically insert regular translations, remind you of direct debits, remind you when to check your bank statements and supports multi-currency transactions.

This Program allows you to monitor and therefore control your finances with ease. All areas are easy to understand with no accountancy jargon in sight."; 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 = ''; } }