var fDesc=new Array();
fDesc[1] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[2] = "Internet using the \"ARP\" protocol exploits. The program can protect your computer from such attacks. The program has a built-in network scanner and supports choosing the network adapter that you want to utilize.";
fDesc[3] = "This reliable utility gives the user the capability of updating and maintaining web sites through FTP (File Transfer Protocol). It is possible as well to upload and download files via SSL, TLS and SFTP, to and from FTP servers.";
fDesc[4] = "allows you to remotely control another computer using the RFB protocol (remote frame buffer). The setup file installs two components: VNC Viewer used to work like client, and VNC Server that allows a Windows desktop to be accessed remotely using the VNC Viewer.";
fDesc[5] = "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[6] = "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[7] = "switches and routers. The application uses multi-thread technology for ensuring robustness and completely trusted transfers. It is very interesting for networks designers and engineers when they have to transfer large network projects.";
fDesc[8] = "used to deliver ordinary Web text and image files.";
fDesc[9] = "protocol with a great GUI. It’s designed to offer a CVS client for any user, from beginners to expert users. Its installation process is very simple and easy to perform. It requires Phyton installed . WinCVS runs in Windows platforms.";
fDesc[10] = "web. Since this is a free application, publishers ask users to \"sign in\" with user email and password to enable them to choose one of the proposed plans: free or different kinds of prepaid operations.";
fDesc[11] = "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[12] = "purposes. The user interface offers an easy graphical way to control all the operations and transfers. The application has the capability of resuming broken or interrupted transfers (both ways: uploads and downloads) at the point they were stopped.";
fDesc[13] = "tougher and obscure portions of the ldap protocol. The developers claim the software is tested and run on a variety of operating systems, such as Windows, Linux, Solaris and OS390, and is supposed to have the capability to operate on any Java supporting operating system.";
fDesc[14] = "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[15] = "both technical users (like IT managers, LAN administrators, web developers) and non-technical ones (like company managers, safe-concerned parents).";
fDesc[16] = "protocols: IRC, AIM, ICQ, MSN Messenger and Yahoo! Messenger. You can have all your contacts together in hand within a unique classical window.";
fDesc[17] = "The program will display your audio files information everytime they are played. This software will also download information from Internet and will show it automatically to you. You will know more about your files' information.";
fDesc[18] = "simple task, following the Help File directions step by step. The application comes with a 'default' group already created for the user. Now the program helps to add a new 'user', or keep the 'default' user that is ready to use.";
fDesc[19] = "files between user PC and FTP sites. The program includes drag and drop facility for selecting the files to transfer in both ends of the connection (user PC and FTP site). It manages files up at the FTP site and the local drives: rename, delete, copy and paste, move, create folders, etc.";
fDesc[20] = "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.";
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 = '...';
}
}