var fDesc=new Array(); fDesc[0] = "Amortization Plus is a program designed to help you create and maintain loan amortization, annuity and lump-sum distribution schedules. You can calculate interest rates, terms, payments, payouts and print schedules for the life of a loan or annuity. You can make balloon payments, change terms, withdraw lump-sums or change any other facet of a loan or annuity."; 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 = ''; } }