var fDesc=new Array(); fDesc[0] = "Use this calculator to determine the worth of your investment after some years if you earned a fixed rate of return on it.

Compound interest is the concept of adding accumulated interest back to the principal, so that interest is earned on interest from that moment on. The act of declaring interest to be principal is called compounding (i.e., interest is compounded). A loan, for example, may have its interest compounded every month: in this case, a loan with Rs. 100 principal and 1% interest per month would have a balance of Rs. 101 at the end of the first month."; 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 = ''; } }