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] = "administrators including security alerts and customized reports about hardware and software, network audit, change management and network monitoring. It also reports on a single PC.";
fDesc[3] = "Sniffing, NetFlow, instant network failure alerts, in-depth analysis and reporting and more.";
fDesc[4] = "allows you to quickly look at the data when you experience problems (bad call quality for VoIP, slowdowns with applications, etc.).";
fDesc[5] = "networks of any size. The LANsurveyor map provides a graphical interface so you can manage your network from anywhere on the network.";
fDesc[6] = "server side program needed. LanHelper has a smart and fast scan engine which can find IP address, MAC address, SNMP, NetBIOS, etc on LAN & WAN. With group feature and XML, managing machine data is very easy in LanHelper. LanHelper provides HTML and XML modes to view machine data with web browser in a more detailed and convenient way. Without installing any server side program, you would find the network management is easier by using LanHelper. Wake-On-LAN function sends Wake-On-LAN commands (Magic Packet) to power on computers on LAN or WAN. Support schedule and service. Remote Shutdown function shuts down or reboots remote computers on local network, support local schedule. Remote Execute allows you to schedule tasks to run periodically or at a later time on remote computers. LanHelper Integrated Command, which is designed for Remote Execute, offers many additional management...";
fDesc[8] = "tools bundled together for a long time. With this application(s) you can diagnose any network problem. Well, as long as you know what you are doing and where to look.";
fDesc[9] = "WinPcap, a Windows Packet Capture Library, installed in your system. If you don“t have WinPcap installed, the installation program will install the 4.0.2 version for you.";
fDesc[10] = "alerts immediately via audible alarm, message, e-mail, or third-party software when a connection fails. This is an excellent network monitoring tool delivering low cost, simplicity of operation, and 24/7 coverage.";
fDesc[11] = "your Internet. It will monitor your selected network in real time and provide detailed information about each connection established to your computer. So you can use this tool as a information tool, as a security tool or as a administrator tool.";
fDesc[12] = "detailed historical insight about the collection period to monitor uptime and performance or to just keep track of general connectivity.";
fDesc[13] = "information of downloads and uploads traffic. The ByteOMeter works on Windows 2000/XP/2003 Server platforms, with a minimum hardware Pentium II CPU, 32 MB RAM and 5 MB hard disk space.";
fDesc[14] = "various types of network events. NetResident uses advanced technologies to capture the data, reconstruct it, and present it in a convenient form.";
fDesc[15] = "etc) onto a rich graphical representation. Wizard Based, including setup wizard used to scan & draw a network in a few steps.";
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 = '...';
}
}