var fDesc=new Array();
fDesc[0] = "The Recovery Report provides a full range of Debt Recovery Management functionality. It can handle an unlimited number of Cases & Clients. Our Recovery Software is ideal for Collection Agencies, Banks and Insurance Companies. Maintain case and recovery details in a single location. Identify noteworthy items for quick retrieval or search by events and individuals to view perspectives and relationships that might otherwise go unnoticed.
Track Vital Information - When the number of Cases increases, chances are you don't know the cases status completely. The Recovery Report will help you to: Maintain and print case details, debts, recovery totals, people, property, letters and comments.";
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 = '';
}
}