var fDesc=new Array();
fDesc[0] = "The QuickTest Professional Add-in integrates Quality Center with QuickTest Professional, enabling you to do the following using Quality Center:
-Add QuickTest Professional tests to the test plan tree.
-View QuickTest Professional tests.
-Launch and edit QuickTest Professional tests (if QuickTest Professional is installed on the same machine).
-Run QuickTest Professional tests from Quality Center.
-View QuickTest Professional test run results and reports.";
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 = '';
}
}