var fDesc=new Array();
fDesc[0] = "Net-Peeker Group Edition is an application that will monitor your network traffic.
Main Features:
- Display all sessions and listen to all ports for any active network application.
- For service shared in svchost.exe, display real service name instead of just "svchost.exe".
- Display application properties and loaded modules.
- Display real time network traffic speed for every computer in the network.
- Display all active network applications on any computer in the network.
- Support "Internet Connection Sharing (ICS)", and can monitor network usage of ICS clients without installing the NetPeeker agent in the clients.
- Can monitor NETBIOS file transfer, which is copying shared files inside a local network.
- Use "WHOIS" service to get detailed information on selected remote IP addresses and domain names.";
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 = '';
}
}