var fDesc=new Array();
fDesc[1] = "refinances. Loan calculator supports regional currency settings and works with wide range of repayment cycles from 1 month to 50 years.";
fDesc[2] = "payment frequency. It allows you to compare two loans side-by-side and calculates Principal, Interest, Taxes and Insurance!";
fDesc[3] = "Canadian type loans; Points; 10 payment frequencies; 12 compounding frequencies; separate origination date and first payment dates";
fDesc[4] = "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[5] = "includes downpayment savings calculator, mortgage qualifier, an amortizattion calculater, and more. Also includes forms and information for home inspection, to do lists, and a home buyer's glossary.";
fDesc[7] = "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[8] = "you choose. Displays answers of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[9] = "6. Gift Certificates. 7. Layaways.";
fDesc[10] = ", look no more. You’ve just found the most appropriate tool: MoneyToys Free Loan Calculator. As its name indicates it’s a free application available to be downloaded from the Wheatworks web site.";
fDesc[11] = "estimate monthly expenses on your mortgage: interest payments, property taxes and private mortgage insurance.";
fDesc[12] = "payments ... provisions for penalty or late fees, additional principal, apply escrow taxes and or insurance payments received and disbursed.";
fDesc[13] = "for BEFORE you ever have to fill out a loan application.";
fDesc[14] = "Qualifier, 2 Loan Amortizations, Loan Spread Calculator, a Biweekly Payment Calculator, a Rent vs. Buy Calculator, a Refinancing Calculator, an Estimate...";
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 = '...';
}
}