var fDesc=new Array();
fDesc[1] = "connections and vital IP statistics and examine individual packets.";
fDesc[2] = "shaper, URL filtering, Bridging, Redirection, NAT and traffic statistics software for the Microsoft Windows.";
fDesc[3] = "network users' Internet access. UserGate combines firewall, antivirus, antispyware and surf protection in a fully integrated and easy-to-use solution.";
fDesc[4] = "using the HTTP, FTP, SMPT, POP3 or Telnet protocols. It doesn´t work on Hotmail or Windows Live Messenger. This program becomes useful when you forgot your passwords, but your web browser remembers them.";
fDesc[5] = "framed interface. In the upper left panel you will see the general information about each HTTP connection (time, client and server IP, URL, file length, status and information).";
fDesc[6] = "both technical users (like IT managers, LAN administrators, web developers) and non-technical ones (like company managers, safe-concerned parents).";
fDesc[7] = "communication monitoring, diagnose network problems, improve network security, improve network performance and analyze network protocols.";
fDesc[8] = "tunneling servers, bypassing restrictive firewalls, proxy servers, and packet shaping ISPs. It is ideal for games that connect to the internet protected by GameGuard anti-cheat system. It needs PingFu Iris or PingFu UDP to work, depending on the protocol of the application.";
fDesc[9] = "analyzing (sniffer) tool. myNetMon uses WinPcap, a windows port of Libpcap which is a packet capturing library.";
fDesc[10] = "researching network protocols.";
fDesc[11] = ".html; Email(smtp, pop3) with .eml; FTP(download or upload) files; Chat messages(incoming or outgoing) in realtime.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}