var fDesc=new Array(); fDesc[0] = "The purpose of this tool is to enable the user to retrieve a list of computer hostnames, logon account names, MS IIS service status and/or determine use of non "LocalSystem" accounts (used to start services). This process is performed from and to online IP-based Microsoft Windows computers, and in many cases may require administrative privileges to perform some of the queries. By automating a few console commands, and targetting a variable range of IP addresses, this tool has the potential to save someone a lot of research time."; 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 = ''; } }