var fDesc=new Array();
fDesc[0] = "WinAmort Pro lets you get right to clear, presentable, printable results in just a matter of minutes. Results you can trust, with no second guessing and no niggling little unanswered questions. Whether you are an expert or a novice, WinAmort Pro provides answers you can count on.
Main features:
-CALCULATE ANY UNKNOWN
-Present or Future Value
-Loan or Payment Amount
-Deposits or Withdrawals
-Interest Rate
-Number of Payments
-Remaining balance
-Down Payment
-Balloon Payment
-APR
-ACCOUNT FOR ANY TYPE OF PAYMENT
-Regular
-Interest Only
-Fixed Principal plus Interest
-Skipped Payments
-Balloon Payments
-Negative Amortization
-Enter Payments on any Date
-Allocate Payments to Interest or Principal
-SELECT ANY COMPOUNDING PERIOD
-Exact Days
-Daily
-Weekly
-Biweekly
-Semi-monthly
-Monthly
-Quarterly
-Semi-annually
-Annually
-COMPUATION OPTIONS
-Normal Amortization
-Simple Interest (U.S. Rule)
-Rule of 78
-Amount Stepped Series
-Percent Stepped Series
-Canadian Amortization
-360, 364 or 365 Days per year.
-FLEXIBLE PRINT OPTIONS
-Print Amortization Schedules including interest and principal.
-Automatic Totals at selected intervals and year ends.
-Export to PDF, EXCEL, HTML, CSV and more!
-OTHER COMMON USES INCLUDE
-Printing Amortization schedules with irregular payments.
-Calculations involving changing interest rates, computing present or future values.
-Lease computations and APR calculations for REG-Z disclosures.";
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 = '';
}
}