var fDesc=new Array();
fDesc[1] = "settings. The program detects the presence of any wireless networks within range of the adapter, providing automatic configuration and connection.";
fDesc[2] = "performance. Defrag, clean, repair, optimizes and check status on hard disc drives or any media connected to your system (fix or removable - memory cards, memory sticks). Rearrange all the data files to adequate them for best performance and for least used space on your hard discs";
fDesc[3] = "connect to different wired and wireless networks at various locations in order to either connect to the company systems or the Internet. Without this tool, they potentially need to reconfigure and restart their computer every time they move around.";
fDesc[4] = ", Windows Vista support, Windows security support, telnet access, multiple monitors support, various connection modes, etc.";
fDesc[5] = "different types of information about local network computers in just a few seconds. This incredible application gives you one-click access to many useful functions such as remote shutdown and wake up, Radmin integration and lots more.";
fDesc[6] = "several IT and networks specialists by more than 5 years. I remember that back in the day, this application was the only application of its kind. What this application does is let you manage your workstations from a single application.";
fDesc[7] = "order to detect, assess and solve security vulnerabilities. The Network Audit tab in the program“s interface includes the buttons to perform different scans. You will be able to launch a Quick, Full or Custom Scan, or schedule a scan to be performed at a given moment.";
fDesc[8] = "assist you in the transcription of audio recordings. The program is installed on the typist's computer and can be controlled using a transcription foot pedal or a keyboard .";
fDesc[9] = "Net Control 2 - Control Your Network Easy...";
fDesc[10] = "execute realtime DNS and PING test, while making subnet creation and network worksheet generation simple and easy. It's an indispensable tool for almost any network administrator.";
fDesc[11] = "TCP/IP nodes and draw a full graphical map using DNS, MAC addresses, SNMP, WMI, NetBIOS and TCP Ports information.";
fDesc[12] = "service based on built-in prioritized rules. With this you can specify a bandwidth limit for each user.";
fDesc[13] = "and Network Inventory software for office and large scale enterprise networks.";
fDesc[14] = "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[15] = "any media content on most p2p network protocols including eDonkey/eMule, Gnutella, Gnutella2, BitTorrent and others. The user interface is not very attractive (extremely colorful, which distracts you), but it is really intuitive and easy to use.";
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 = '...';
}
}