var fDesc=new Array();
fDesc[0] = "TSMManager Viewer is software that monitors the state and manipulate the objects of TSM servers.
It consists of:
- A central collector part that is in charge of all communication with up to 30 TSM servers.
- A viewer part that can be installed on multiple PC's and supplies the user interface.
- A web server built into the collector that allows easy access to pulling lists for the vaulting
function plus allows access for users without a TSM administrative user.
- An optional Windows agent for manipulating node schedulers and their files";
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 = '';
}
}