var fDesc=new Array();
fDesc[0] = "IBM® Rational® Rhapsody® Design Manager enables you to share, collaborate and manage your designs across the systems engineering and embedded software development lifecycle.
- Easily access information though a web client for extended stakeholders such as suppliers, customers, or contractors to facilitate team collaboration and an agile development process.
- Collaborate on designs with stakeholders from other teams for design correctness, alignment with requirements, feasibility, and compliance to organizational standards.";
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 = '';
}
}