var fDesc=new Array(); fDesc[0] = "A free, fast, easy-to-use collection of 7 financial calculators. Loan calculator, accelerated payments, balloon payments, amortization schedule & interest calculator. Support for Normal loans; Rule-of-78's; Canadian type loans; Points; 10 payment frequencies; 12 compounding frequencies; separate origination date and first payment dates"; 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 = ''; } }