var fDesc=new Array();
fDesc[0] = "IBM Tape Diagnostic Tool (ITDT) offers multiple functional capabilities that simplify the task of maintaining IBM tape products.
The IBM Tape Diagnostic Tool is designed to:
-Be simply installed and handled.
-Run quick or extended diagnostics on tape drives to check if the tape device is defective and output a pass/fail result.
-Invoke tape library self-test operations.
-Retrieve dumps from tape drives and libraries.
-Perform firmware update check and retrieval for tape drives and libraries.
-Perform a firmware update on tape drives or libraries.
-Test the performance of the environment by completely writing a cartridge and measuring performance.
-Verify tape drive compression.
-Measure system performance per system test.
-Retrieve and display cartridge usage and health information.";
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 = '';
}
}