var fDesc=new Array();
fDesc[0] = "The Investigator Report provides a full range of detective case management functionality. It can handle an unlimited number of Cases. The application provides case management, billing, date tracking, and calendaring from a single repository. Maintain case details and motions 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 Investigator Report will help you to: Maintain and print case facts, objects, dates, questions, 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 = '';
}
}