var fDesc=new Array();
fDesc[0] = "Ezy Loan Calculator is a very user friendly and inexpensive loan amortization software, considering all the functionality it offers.
Computer requirements:
- Minimum of 486 Processor or higher
- Minimum of 16MB RAM or higher
- 10MB free disk space
- Windows 95/98/NT/2000/2003/Me/XP
Main Features :
- 3 comparative loan amortization columns.
- Supports different countries, compounding methods.
- New payments can be inserted in the history payments table.
- Payments or interest can be updated in the history payments table.
- Supports Daily, Weekly, Monthly, Quarterly, Semi-Annual and Annual compounding.
- Supports Begin of Period or End of Period payments.
- The repayment table compares loan amount & interest.
- Pie, Bar, Line and Area charts.
- Save and retrieves data on a file.
- Exports data to HTML, CSV file.
- Preview & Print data.
- Leave any of the four fields blank the system will calculate it as the unknown (Loan Amount, Period, Interest Rate & Payment).
- Free 30 days trial download.
- Free version upgrades.
- Free product support.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}