var fDesc=new Array(); fDesc[0] = "The Remote Command manager is a tool that allows you to run remote commands on groups of computers. It allows you to perform the common administration tasks such as :
- Install .msi and .exe setup packages.
- Deploy service packs and hot fixes on many computers.
- Execute batch files and scripts on multiple systems.
- Distributing registry changes with .reg 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 = ''; } }