var fDesc=new Array(); fDesc[0] = "Future Value of Savings Calculator allows you to enter a beginning balance, regular payment amount, start and end dates, annuity type, interest rate, payment frequency and compounding frequency. It provides integrated help, automatic 'hints', accommodates all Regional Settings and includes a user-friendly registration system. You will quickly see the future value of your lump sum and periodic savings plans"; 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 = ''; } }