var fDesc=new Array();
fDesc[1] = "connections and vital IP statistics and examine individual packets.";
fDesc[2] = "Packet analyzer with HTTP file capture, a Graphical Packets Mode that shows traffic with visual effects, per-IP/per-Port/per-IP -Pair statistical information collection, and more. All in a single, easy to use Windows application. Freeware.";
fDesc[3] = "to perform; no further requirements to install the program are needed. The HTTP Analyzer GUI is friendly and easy to use; the different data sections are organized in different sections to make easy the information analysis.";
fDesc[4] = "monitoring local networks and Internet connections. It captures the data passing through your dial-up connection or network Ethernet card, analyzes this data and then represents it in an easily readable form. SoftPerfect Network Protocol Analyzer is a useful tool for network administrators, security specialists, network application developers and anyone who needs a comprehensive picture of the traffic passing through their network connection or segment of a local area network. SoftPerfect Network Protocol Analyzer presents the results of its network analysis in a convenient and easily understandable format. It also allows you to defragment and reassemble network packets into streams. The program can easily analyze network traffic based on a number of different Internet protocols as listed below. SoftPerfect Network Protocol Analyzer features full decoding of the following low level...";
fDesc[5] = "the kernel system services. This program will display all kernel services and the responsible modules for handling them.";
fDesc[6] = "traffic transmitted over a local host and a local network";
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] = "both technical users (like IT managers, LAN administrators, web developers) and non-technical ones (like company managers, safe-concerned parents).";
fDesc[9] = "protocol and the web server, then HTTP Debugger is the program for you.";
fDesc[11] = "communication monitoring, diagnose network problems, improve network security, improve network performance and analyze network protocols.";
fDesc[12] = "inter-process communication.";
fDesc[13] = "Header,Timing, Content, Cookies, Query Strings, Post data, Request and Response Stream, redirection URLs and more.";
fDesc[15] = "HTTP/HTTPS traffic in real-time. It doesn't change your Windows system files and no device drivers or proxies have to be installed.";
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 = '...';
}
}