var fDesc=new Array();
fDesc[0] = "PerTrac CMS is a comprehensive research management software platform that enables investment teams to consolidate all fund research data, manage interactions with investment managers and keep due diligence on track.
Main features:
- Centralize manager research so that everyone in your organization has the information they need at their fingertips.
- Automatically capture all e-mails, meetings, notes and tasks in Microsoft Outlook – an environment you work in every day.
- Track an unlimited amount of due diligence information – and conduct advanced queries across all information sources.";
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 = '';
}
}