var fDesc=new Array();
fDesc[1] = "track your bank accounts, stocks, income and expenses. Are you going to buy a vehicle or a new house? GnuCash will help you plan the investment and track loan payments. With GnuCash you can also keep track of your checkbook.";
fDesc[2] = "calculator. You can select from two styles of algebraic input or RPN. DreamCalc comes with a full range of scientific, statistical and financial functions.";
fDesc[3] = "built-in periodic table of the elements, stopwatch, number base conversions, vectors, matrices and complex numbers.";
fDesc[4] = "for all our family, house, budget, etc. From the main window, we can access several features. For example, there is an icon toolbar with Calendar, Contacts, Alarms, Tasks, Cards, Diary, Property, Budget, Health, Music, Union and Options.";
fDesc[5] = "payment frequency. It allows you to compare two loans side-by-side and calculates Principal, Interest, Taxes and Insurance!";
fDesc[6] = "collection of financial calculations tools, organized into the following six categories: Finance, Depreciation, Loan, Schedules-Cash Flow, General, and Advisors. It offers a very intuitive interface and the system requirements are minimal.";
fDesc[7] = "have to insert some basic data (loan value, payment frequency, amount of periods, rate, and payments) and you will be able to get 135 results in a table so you can study payment amounts, interest rates, terms of the loans, and amounts borrowed and find the best terms for you.";
fDesc[8] = "discount rates per series.";
fDesc[10] = "you choose. Displays answers of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[11] = "APR (annual percentage rate). We can use this utility to compare the various offers that we may receive from banks or other financial institutions. This calculator can help us know which loan suits our financial situation better.";
fDesc[12] = "payments, interest rates and conversions, standard deviation, percent, TVM, NPV, IRR, cash flows, bonds and more.";
fDesc[14] = "borrowing money by comparing 135 loans at once! It automatically displays financial answers on a 2-dimension grid as you enter or update loan variables. You may easily view grids of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[15] = "will allow you to keep your house on the market when you want to sell it. It clearly shows effects of time on market on your net profit.";
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 = '...';
}
}