var fDesc=new Array();
fDesc[0] = "iMoney soft helps people organize and manage their personal finances quickly and easily. It supports all the features required for home or even small-business accounting needs:
Manage multiple accounts of different types;
Create and manage budgets ;
Track performance of investments ;
Do your financial math in multiple currencies;
Track your spending habits and see where the money goes;
Multiple Account Types ;
Easy to Use;
Real-time Understanding of Financial Conditions;
Clearer "Liability" and "Creditor's Rights" Management;
Organize and Manage Income and Expense by Category;
Track Income and Expense Related to Specific Personnel;
Secure Financial Information.";
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 = '';
}
}