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] = "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] = "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[4] = "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[5] = "with positioning, search engine and link popularity, pattern search, Net Speak?, trademark searches, exporting, 500+ domains and more!";
fDesc[7] = "for BEFORE you ever have to fill out a loan application.";
fDesc[8] = ", increasing payment, once-off and irregular payments";
fDesc[11] = "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.";
fDesc[12] = "program calculates amortization schedules for mortgages, personal loans, car loans and any other kind of loans.";
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 = '...';
}
}