var fDesc=new Array();
fDesc[1] = "Diagnostics module - Benchmarks - Tweaking features - Web links - Favorite pages - Built-in hardware database - Full Windows XP compatibility - Full Windows Server 2003 compatibility - Fully localized user interface.";
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] = "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[4] = "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[5] = "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[6] = "network connections made in your PC (local and from Internet), arranged in a per-application basis, and also you can limit the bandwidth usage for each one of them.";
fDesc[7] = "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[8] = "functionality for your code. This incredible program allows you to enumerate all installed serial devices, including, but not limited to serial ports and modems.";
fDesc[10] = "network. This can be done from a local or a remote position. We are allowed to monitor our network and share connections, monitor servers, hosts, and services, create a network diagram and export it to Windows Visio.";
fDesc[11] = "and export open ports information into a text file. You may even close open connections from within this application.";
fDesc[12] = "detailed statistics about protocolsand interfaces. Also included are databases over known trojan ports, country codes ...";
fDesc[13] = "tool you may constantly check the response from your server and make sure that your website is online 100% of the time.";
fDesc[14] = "TaskManager does not has: kill system processes, suspend processes, monitor ports, start in other desktop and much more.";
fDesc[15] = "activity occurs, you are notified of the exact time when it happened, and the IP and hostname of who tried to compromise your system.";
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 = '...';
}
}