var fDesc=new Array();
fDesc[0] = "The Margill software product line is simple to use, offers complete flexibility and the highest accuracy for:
-Regular and complex payment schedules and amortization for loans, mortgages and ARMs, leases, lines of credit, collection and investments
- Interest calculation at fixed or variable interest rates
- Simple or compound interest
- APR, APY and effective yield computations including complex loans
- Global portfolio management (loans, lines of credit, mortgages, leases, collection)
- Law computations that include prejudgment and post judgment interest and court fees";
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 = '';
}
}