var fDesc=new Array();
fDesc[0] = "Newforma Project Center is a comprehensive solution designed for managing all forms of project information, whether at your office, from the cloud or on the go. It provides features such as:
- Manage project information for a competitive advantage
- Improve profitability as you reduce risk
- Capture and connect interrelated processes
- Review documents without printing
- Find emails and documents in seconds.";
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 = '';
}
}