var fDesc=new Array();
fDesc[0] = "Telelogic DOORS, the worlds leading requirements management tool, is a multi-platform, enterprise-wide system designed to capture, link, trace, analyze and manage changes to information to ensure a projects compliance to specified requirements and standards.
Seamlessly incorporate the power of requirements across the enterprise.
Telelogic DOORS is the worlds leading requirements management tool; a standard used by more than 100,000 users at over 1,000 companies around the world. A multi-platform, enterprise-wide requirements management tool designed to capture, link, trace, analyze and manage a wide range of information to ensure a projects compliance to specified requirements and standards.
Using the most powerful requirements management functionality available anywhere, DOORS enhances Communication, Collaboration and Validation across the enterprise.";
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 = '';
}
}