var fDesc=new Array();
fDesc[0] = "Rational RequisitePro helps project teams to manage their requirements, to write good use cases, to improve traceability, to strengthen collaboration, to reduce project rework, and to increase quality.
Main features:
- Avoid rework and duplication using advanced, real-time integration with Microsoft® Word
- Manage complexity with detailed traceability views that display parent/child relationships
- Mitigate project risk with display of requirements that may be affected by upstream or downstream changes of requirements";
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 = '';
}
}