var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = ", Retirement Analysis, Personal Budgeting, Investment and Savings calculations, Future & Residual Value calculations, and much more.";
fDesc[4] = "including English/Metric Conversions as well as 7 Memory and 8 Financial functions. When the program opens, it displays the Standard Calculator mode window. Changing between modes is made easy by clicking the Next or Previous mode arrows.";
fDesc[5] = "purchasing different equipments or tools. So, loan has become as integral part of everyone’s life as it is not always possible to pay in cash. But the calculations involved in various kinds of loans like the interest rates, down payments, EMI and lot others";
fDesc[6] = "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[7] = "you choose. Displays answers of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[8] = "introducing variables that include initial balance, periodic payments, interest of your investments, start and end dates so you can have an idea of the amount of money you can save with certain behavior.";
fDesc[9] = ", interest free periods, and balloon payments. New reporting feature with print preview feature.";
fDesc[10] = "interest rate of your loans. Knowing the average interest rate of loans helps determine when consolidation may be a good idea.";
fDesc[11] = "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[12] = "compound interest. Solves for present value, future value, periodic payment or deposit, number of periods and interest rates. Create amortization sc...";
fDesc[13] = "answer grid of loan amounts, interest rates, terms in periods, or payment amounts based upon the loan variables you enter.";
fDesc[14] = "individual investments and final balance. It includes account management with reminders, multiple currency, and consolidated balance in any currency.";
fDesc[15] = "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 = '...';
}
}