var fDesc=new Array();
fDesc[1] = "Movienizer database and download all the information about that movie in a single click. You can get every small detail of the movie easily including names of movie director, actors, co-actors, release year and much more.";
fDesc[2] = "with many details about the books you have. This powerful application is a great solution for those who want to create and maintain a complete inventory perfectly organized and easily manageable.";
fDesc[3] = "refinances. Loan calculator supports regional currency settings and works with wide range of repayment cycles from 1 month to 50 years.";
fDesc[4] = "that you can add DVDs to the library, sorting them in folders and boxes, and assigning them a color. You can either specify your own information or search in an online database.";
fDesc[5] = "payment frequency. It allows you to compare two loans side-by-side and calculates Principal, Interest, Taxes and Insurance!";
fDesc[6] = "Calc calculates repayments amount, monthly and total interest, total repayments and generates a full repayment list from a start date.";
fDesc[7] = "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[8] = "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[9] = "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[10] = "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[11] = "you choose. Displays answers of loan amounts, interest rates, terms in months, or payment amounts based upon your loan variables.";
fDesc[12] = "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[13] = "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[14] = "in a few numbers and create a report that you can pin up and tick off each month until you are debt free.";
fDesc[15] = ", 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.";
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 = '...';
}
}