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] = "connections and vital IP statistics and examine individual packets.";
fDesc[3] = "Sniffing, NetFlow, instant network failure alerts, in-depth analysis and reporting and more.";
fDesc[4] = "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[5] = "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[6] = ", 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[7] = "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[8] = "HTML DOM and CSS style, evaluate expressions and display error messages, explore source code of webpage and monitor DHTML Event and HTTP Traffic";
fDesc[9] = "shaper, URL filtering, Bridging, Redirection, NAT and traffic statistics software for the Microsoft Windows.";
fDesc[10] = "communication monitoring, diagnose network problems, improve network security, improve network performance and analyze network protocols.";
fDesc[11] = "help System Administrators in security and performance issues. HTTP Debugger works on Windows 2000/XP/2003/Vista platforms.";
fDesc[12] = "easy-in-use program applies different filters, features many advanced functions and has a user-friendly, easily customized interface.";
fDesc[13] = "Header,Timing, Content, Cookies, Query Strings, Post data, Request and Response Stream, redirection URLs and more.";
fDesc[15] = "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 = '...';
}
}