var fDesc=new Array();
fDesc[1] = "network users' Internet access. UserGate combines firewall, antivirus, antispyware and surf protection in a fully integrated and easy-to-use solution.";
fDesc[2] = "both technical users (like IT managers, LAN administrators, web developers) and non-technical ones (like company managers, safe-concerned parents).";
fDesc[3] = "my site handle? Will my site crash under load? What are the response times? Easy to use, no scripting but can design advanced scenarios";
fDesc[4] = ", bytes/sec or utilization. Works on all SNMP-capable interfaces (computers, NICs, switches, routers, etc) with adjustable poll interval.";
fDesc[5] = "PIX ASA and FortiNet FortiGate firewalls.";
fDesc[6] = "analyzing (sniffer) tool. myNetMon uses WinPcap, a windows port of Libpcap which is a packet capturing library.";
fDesc[7] = "researching network protocols.";
fDesc[8] = "monitor and manage a multi-segment networks: station discovery and remote control, traffic statistics, frame capturing, event tracking";
fDesc[9] = "newsgroups. Uses various filters to check only topics you're interested in.";
fDesc[10] = "the other side. Internet software developers can use HTTP Debugger to analyze the communication between their programs and Internet.";
fDesc[11] = "interface makes it simple to create access rules controlling what activity should be blocked.";
fDesc[12] = "HTTP/HTTPS traffic in real-time. It doesn't change your Windows system files and no device drivers or proxies have to be installed.";
fDesc[13] = "historical and real-time usage. Stops spyware, filters out unacceptable web sites, and blocks annoying advertisements.";
fDesc[14] = "information is collects remotely, the server and the HTTP Monitor can works in different places.";
fDesc[15] = "Linux webservers.";
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 = '...';
}
}