var fDesc=new Array();
fDesc[0] = "FineAnces™ is an easy-to-use and at the same time very powerful product, which will allow to get rid of your expenses and thus to plan your financial success.
A short list of FineAnces' features follows:
User-friendly management of incomes and expenses
Support for multiple accounts (cash, credit cards etc.)
Instant two-click access via system tray
Password protection of your finance files
Support for debts and loans.";
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 = '';
}
}