var fDesc=new Array(); fDesc[0] = "Discounted Cash Flow Analysis Calculator, helps you with capital budgeting by simultaneously evaluating the cash flow series of 14 projects against 5 different discount rates per project. For each of 14 capital budgeting project's cash flow series' five discount rates, Discounted Cash Flow Analysis Calculator calculates the following values for you: Modified Internal Rate of Return (MIRR), Net Present Value (NPV), Net Future Value (NFV), Net Uniform Series (NUS) [aka, Equivalent Annual Annuity (EAA)], Present Worth Cost, Present Worth Revenue, Benefit/Cost Ratio, and Present Value Ratio."; 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 = ''; } }