var fDesc=new Array();
fDesc[1] = "PC. The data appears classified in three big groups, Software, Hardware and Network. Within each of them there are several sections that specify details about the processor, motherboard, printer, operating system, video drivers, libraries, etc.";
fDesc[2] = "information, Process manager, Optimizer, 1 click cleaner, Repair center, Start up manager, System speed booster, Junk file cleaner, Registry Cleaner, Wallpaper changer, Privacy protector, File Splitter, Shutdown manager and many more utility tools that can customize your system for best performance.";
fDesc[3] = "allows you to close unwanted TCP connections, kill the process that opened the ports, and save the ports list to file, and more.";
fDesc[4] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[5] = "active TCP and UDP connections on your computer with protocol statistics. It is a set of utilities like Netstat, Ping, Ipconfig, Route, Tracert, Arp.";
fDesc[6] = "incredible application uses multi-threading, so on fast computers you can scan more than 1000 port per second, making this tasks really fast. What is more, it contains descriptions for common ports, and can perform scans on predefined port ranges.";
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] = "you are using a microphone or have a built-in microphone in your web cam. The trigger alerts can be customized, and you can configure the program to record audio and video when an alert is triggered.";
fDesc[9] = "multithreaded, so on fast machines you can scan many computers at once.";
fDesc[10] = "a Swiss Army knife for everyone interested in a set of powerful network tools for everyday use.";
fDesc[11] = "perform scan on predefined port ranges.The tool is designed with a user-friendly interface and is easy to use.";
fDesc[12] = "port, because the program maps ports to its owning application. Active Ports 1.4 also displays a local and remote IP address for each connection and allows you to terminate the owning process.";
fDesc[13] = "and user needs more communication serial ports. The application creates virtual serial RS232 ports with exactly the same as real serial ports. Applications that work with real serial ports will never feel any difference when using these virtual ports.";
fDesc[14] = "and export open ports information into a text file. You may even close open connections from within this application.";
fDesc[15] = "helps developers and engineers to test, debug and create applications that use serial ports without real hardware installed. The program creates virtual devices with different capabilities. Virtual Serial Ports Emulator works on Windows 2000, XP and Vista.";
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 = '...';
}
}