var fDesc=new Array(); fDesc[0] = "Remote Command runs any command remotely and returns the output. It's a good supplement to existing tools that do not run remotely, e.g. "route print", "ipconfig /all", "arp -a", etc. With Remote Command you don't need any client tools on the target machine, and you can even execute a local file on the remote system."; 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 = ''; } }