var fDesc=new Array();
fDesc[1] = "hardware information database for over 68000 devices! Yet, the program is very small, about 12MB. It includes \"Monitor Diagnostics Test\", which is a complete tool for tweaking your CRT and LCD monitor.";
fDesc[2] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[3] = "is a replacement for Windows Explorer’s copy functionality. It replaces Windows Explorer file copy and adds many features like transfer resuming, copy speed computation and control, improved copy progress display, copy list editable while copying, and an error log.";
fDesc[4] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[5] = "all the processes running in our computer. It has never been so easy to detect suspected items, enable, disable, remove, or put them in quarantine. We are also allowed to view the security risk for each running process, CPU usage and more.";
fDesc[6] = "automatically, without modifying your system in any way. The main windows of RamBooster show you by default the target level of free RAM (by default, 1 Mb.), your Free RAM at this moment, and the percent of Free RAM and CPU usage.";
fDesc[7] = ", installed devices, memory and CPU usage, running processes and service, drive properties, among other technical details. All this information can be can be saved as a file, exported to HTML, XML or text format, and just viewed in its categorized user interface.";
fDesc[8] = "optimize our computer's overall performance and security. It features a user-friendly interface, which provides comprehensive information on our network traffic, CPU usage, and Memory usage, items on Windows startup, opened applications, running processes, services, and log report.";
fDesc[9] = "disk activity and the network port usage. This program can be installed in English, German, Dutch, Polish or Russian. Once installed, the program stays as an animated icon in the system tray. The icon will graph the CPU usage in real time.";
fDesc[10] = "hardware components. Dr. Hardware 2008 has an icon’s menu with six options. The overview option gathers all the hardware information on the computer, shows graphs in real time of the CPU usage to monitor and analyzes the CPU usage and performance.";
fDesc[11] = "motherboard, CPU, hard discs, etc.) voltages and fan speeds. It provides a lot of info regarding your hardware components with graphics that show the current temperatures, fans and voltages";
fDesc[12] = "helps you to run your PC without errors and internal system problems. It also offers a Windows tweak tool that can make shell changes to your system to avail you some useful facilities.";
fDesc[13] = "availability, Disks, Processes, Network Monitoring (Processes accessing Internet, Network Traffic/Speed), Services, StartUp Programs.";
fDesc[14] = "usage part of the performance tab of Windows Task Manager. The program works on all Windows versions even those who don't have the Windows Task Manager as a part of the operating system.";
fDesc[15] = "icon image and enables you to check how much of your CPU's capacity is in use. It also allows you to change the refresh rate of the tray icon and configure the program to load on windows startup.";
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 = '...';
}
}