var fDesc=new Array();
fDesc[1] = "spending habits, record expenses, transfer among accounts and do on-line banking.";
fDesc[2] = "with too much unnecessary high-end functionality and essentially features the much-needed features, such as provision to update the stock quotes directly from the web.";
fDesc[3] = ", savings, credit cards, loans, debt accounts. You can even create your own account types!";
fDesc[4] = "finally become a savvy spender and protect yourself from the danger of debt.";
fDesc[5] = "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[6] = "one personal financial tool that simply delivers; IngenMoney Pro V3.0, the solution you've been waiting for!";
fDesc[8] = "using your credit card statements. Simply match your transactions to the categories provided, then use the tools to group and sort the information.";
fDesc[10] = "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 = '...';
}
}