var fDesc=new Array();
fDesc[0] = "Wallet Balance is a free Home Finance programme to manage your finances. Enter your income and expenditure in a few short steps and receive easy to interpret reports.
Everyone needs organized and controlled domestic finances. Wallet Balance is user-friendly software designed for all users. From the least advanced, with little knowledge of information technology or Internet, to users with a greater IT knowledge.
Features:
- Enter your income and expenditure
- My savings and purchases
- My money alerts
- Personalisation
- Printout of statistics
- Compatible with Windows";
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 = '';
}
}