var fDesc=new Array(); fDesc[0] = "BillCalc is a small program that is useful for those who want to set a schedule for paying off loans, credit card balances, and other debts. BillCalc calculates monthly payments based on your individual goals regarding a particular bill. BillCalc takes in three numbers: the balance, the interest rate, and the number of months you'd like to have to pay off that balance. It puts those figures into a simple formula for compound interest, and calculates the necessary monthly payment. This update features bug fixes and changes the name of the company to Peretek."; 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 = ''; } }