var fDesc=new Array(); fDesc[0] = "This program contains the following financial functions: a calculator with loan-comparison capability for various interest rates and term length. Another calculator for determining affordability for mortgage or auto loans, and an actuarial calculator as well as a regular calculator. Finally, there is a budget function to plan out your monthly and yearly budget."; 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 = ''; } }