var fDesc=new Array(); fDesc[0] = "A database system for loan accounting, servicing, and tracking. This system manages a database or loan information. This information stores all the information necessary to service the loans.
It stores information for tracking current, past due, and prepaid installment payments, interest accrued and interest paid.
Also it stores information to calculate and track deferred income on installment loan sales contracts."; 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 = ''; } }