var fDesc=new Array(); fDesc[0] = "This software is a network diagnostic tool for Windows 98, ME, 2000, 2003 and XP. Using this tool you can monitor TCP/IP targets, by sending packages to those targets and viewing the received packages result over a detailed list and a graph.
The ping process verifies connectivity to a host on your local area network or on the Internet. Ping sends an ICMP "echo request" as a data packet to a remote device and displays the results for each "echo reply." This exchange is called "pinging".
Ping sends one packet per a period of time of your choice and prints and draw one line of output for every response received. When ping terminates, it displays a brief summary of round-trip times and packet loss statistics. Round trip times indicate the time (in milliseconds) it takes for the packet to get to the remote host and a response to arrive back. This time varies depending on network load."; 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 = ''; } }