var fDesc=new Array(); fDesc[0] = "Test Manager gives you test metrics across multiple builds and shows you test cases never executed across selected builds. Central repository for all test cases (manual or automated) allows for consistency and transferring knowledge to other test personnel as well as sharing information with development personnel whether local or geographically dispersed. Manages test results so that testing status is only a click away. When a user enters a result for a test case, a date/timestamp and username are associated with that test case and release number. Manages what to test from release to release. Test Manager takes most of the guess work out of what must be retested in subsequent releases by allowing users to select which test cases to bring over to new release based on previous build's test results. This results in better test coverage!"; 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 = ''; } }