var fDesc=new Array();
fDesc[1] = "all the processes running in our computer. It has never been so easy to detect suspected items, enable, disable, remove, or put them in quarantine. We are also allowed to view the security risk for each running process, CPU usage and more.";
fDesc[2] = "easy-in-use program applies different filters, features many advanced functions and has a user-friendly, easily customized interface.";
fDesc[3] = "Sniffing, NetFlow, instant network failure alerts, in-depth analysis and reporting and more.";
fDesc[4] = "connections and vital IP statistics and examine individual packets.";
fDesc[5] = "shaper, URL filtering, Bridging, Redirection, NAT and traffic statistics software for the Microsoft Windows.";
fDesc[6] = "in-depth knowledgeable information about your all network adapters. Even it is also able to extract value information of my broadband USB modem. Now I am able to find secrets information of my broadband network adapter like Adapter Name, Description, Speed, MTU etc.";
fDesc[7] = ", create a new one to monitor our Wi-Fi signal strength for example. It can measure different kinds of application, i.e., HTTP, HTTPS, FTP, NetBIOS, domain, SMPT, POP3, IMAP, NNTP, RTSP, or custom.";
fDesc[8] = "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[9] = "HTML DOM and CSS style, evaluate expressions and display error messages, explore source code of webpage and monitor DHTML Event and HTTP Traffic";
fDesc[10] = ", bytes/sec or utilization. Works on all SNMP-capable interfaces (computers, NICs, switches, routers, etc) with adjustable poll interval.";
fDesc[11] = "communication monitoring, diagnose network problems, improve network security, improve network performance and analyze network protocols.";
fDesc[12] = "help System Administrators in security and performance issues. HTTP Debugger works on Windows 2000/XP/2003/Vista platforms.";
fDesc[13] = "Header,Timing, Content, Cookies, Query Strings, Post data, Request and Response Stream, redirection URLs and more.";
fDesc[14] = "monitor and manage a multi-segment networks: station discovery and remote control, traffic statistics, frame capturing, event tracking";
fDesc[16] = "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[17] = "information is collects remotely, the server and the HTTP Monitor can works in different places.";
fDesc[18] = "historical and real-time usage. Stops spyware, filters out unacceptable web sites, and blocks annoying advertisements.";
fDesc[19] = "Linux webservers.";
fDesc[20] = "corresponding response), it will display the headers, and 4 views of the body: Text, Hex, XML, and Image.";
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 = '...';
}
}