var fDesc=new Array();
fDesc[1] = "guide you on how to use your money in a wise way. It is a kind of accounting program which will allow you to register what you have to pay, when you have to pay it, what you have to get payed and when you have to get paid.";
fDesc[2] = "you record your income, expenses, bank loans and other cash items. The program is quite simple and can be used by all people, as it doesn't require previous accounting knowledge.";
fDesc[5] = "organize and manage all your personal finances quickly and in a very easy and intuitive way. This program is made to manage home accounting.";
fDesc[6] = ", savings, credit cards, loans, debt accounts. You can even create your own account types!";
fDesc[7] = "to track your earnings and spending over time. For Easy Money to be of any use to you, you have to make sure that you spend quite some time creating the categories that better suit your finances. Once you are done doing that, you can add new entries";
fDesc[8] = "application and receive feedback almost immediately. When you start adding statements and transactions, the application will gather that information and draw reports for you.";
fDesc[9] = "one personal financial tool that simply delivers; IngenMoney Pro V3.0, the solution you've been waiting for!";
fDesc[10] = "of your loans, mortgage, and its interest rates. The program features a simple and intuitive user interface that ensures that anyone can understand it and take the greatest advantage of it.";
fDesc[12] = "using your credit card statements. Simply match your transactions to the categories provided, then use the tools to group and sort the information.";
fDesc[13] = "allows you to see all of your money at once your accounts, your investments, even what you owe on credit cards.";
fDesc[14] = "charged on your loans. Load your loan details and let the tools instantly highlight any errors in the balances and interest amounts.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}