var fDesc=new Array();
fDesc[2] = "in order to analyze network problems, detect intrusion attempts, Monitor usage, collect statistics, filter content from network traffic, debug communications. Ethereal changed it's name to Wireshark.";
fDesc[3] = "analyzing it. The version 3.2 of Microsoft Network Monitor has been modified to add some new tools with improved functionality such as; ‘Process Tracking’, Network Monitor API etc. It is actually an update which replaces Network Monitor version 3.1. The download size varies from 4.3MB-15.1MB.";
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] = "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] = "sophisticated viewing and searching to accurately and efficiently debug and test USB devices.";
fDesc[9] = ", debugger,sniffer, it allows you to control, debug, monitor, sniff, test and analyze serial port activities with RS232/RS485/RS422/TTL converters.";
fDesc[11] = "traffic on your network. You will view connections, packets and data in real time. EtherDetect Packet Sniffer will show you all the information it gathers in a framed interface.";
fDesc[13] = "Windows system.";
fDesc[14] = "inter-process communication.";
fDesc[15] = "capture network traffic and enables you to analyze the data. Detailed packet information is available in a tree structure.";
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 = '...';
}
}