var fDesc=new Array();
fDesc[0] = "InterAction is the leading provider of CRM software and services, which enable professional services firms and other relationship-based organizations to create the Relationship Intelligence they need to uncover new business opportunities.
InterAction is easily accessed anytime, anywhere via an Internet browser or a Windows client, where professionals can view and manage information however they choose — through knowledge management platforms, corporate portals, intranets, extranets, and wireless devices — while retaining control over their personal information and relationships.
InterAction solutions are available to the Accounting, Financial Services, Legal, Management Consulting and other Professional Markets.";
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 = '';
}
}