var fDesc=new Array(); fDesc[0] = "Using VR is like using a map instead of text.
Main Features:
- Organize requirements visually and conceptually
- Find requirements instantly, e.g., by term, by concept, or by link to another requirement
- Find similar requirements in a snap
- Link requirements and other elements
- Create representations and views that suit YOU
- Create intertwined structures, such as use cases with common steps and elements - and benefit from easy ways of handling them
- Analyze requirements using simple built-in queries
- Create reports using easy integration with Word and other tools"; 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 = ''; } }