var fDesc=new Array(); fDesc[0] = "FinanceQA releases a mortgage calculator for Windows to help you calculate your monthly mortgage payments easily. Just enter in your Principal, Annual Interest Rate, and Number Of Monthly payments and click Calculate. You will then be showns what your monthly mortgage will be. FinanceQA created this mortgage calculator to help you learn more about how a mortgage works. Always seek the help of the loan originator to find out what your exact monthly mortgage payment will be. We hope this calculator is easy to use to help you learn more about mortgage payments."; 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 = ''; } }