var fDesc=new Array(); fDesc[0] = "ESBFinCalc Pro is a Financial Calculator that aims to provide a sophisticated yet easy to use tool to perform Financial Calculations including Simple Interest, Compound Interest, Investments, Loans, Annuities, Depreciation, Coupon Dates and other features. Supports full Precedence, Logging of Results, Clipboard Support, Integrated Help, and much more. For those who don't like Precedence of Operators, that can also be turned off."; 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 = ''; } }