var fDesc=new Array();
fDesc[1] = "Live. Besides providing protection to your Pc from threats, it is packed with a number of additional features. It also helps in improving your PC’s performance by removing the junk matters from the system’s hard disk.";
fDesc[2] = "you to download and install. This is not done automatically; the program lets you choose whether or not to use the update found. Each update is listed with a detailed description in VersionTracker's interface.";
fDesc[3] = "prevent data loss. The system is based on the Self-Monitoring Analysis and Reporting Technology (S.M.A.R.T.). This software monitors hard disk parameters such as Temperature, Head Flying Height and Spin-Up Time and notifies a user when a critical condition occurs. Disk Monitor also displays hard disk information, current S.M.A.R.T. attributes and the overall status of the hard disk's health. Advanced disk scan allows you to detect bad sectors on a disk surface. The software can be launched automatically at Windows startup and monitor the system in the background. An icon in the System Tray can display the temperature for selected HDDs.";
fDesc[4] = "using several cleaning tools, including the standard Windows facilities, such as Scan Disk, System Restore and Defrag local disks. Also, the program supplies several specialized tools for cleaning, tuning the system, as well as several file tools.";
fDesc[5] = "Features: Now, image thumbnails can be automatically rotated according to their EXIF data. It is possible to multiple scan the same folder, scan disks with both audio and data, import folders with the same path. It supports RAW files for popular digital camera.";
fDesc[6] = "error or relevant issue right from Windows Installer Issues, ActiveX Controls, Windows Explorer Errors, Isass.exe, svchost.exe and other .exe Errors, Windows Operating System Problems, Registry Errors, ActiveX Shield, DLL Errors, Runtime Errors, IExplorer etc.";
fDesc[7] = "This simple application will use all tools already available in your Windows. From just one window, you will be able to configure these three basic functions and they will be done after rebooting your system, and as a consequence, you will get better results.";
fDesc[8] = "can scan your computer for files with the same size, name and modification time.";
fDesc[9] = "at the built-in features it possesses: drive defrag, freeing up RAM space, web acceleration, maintenance wizard, registry cleaner, safe registry backup and restore, scan disk, system restore, system scrubber, uninstaller, undelete, wipe, file rename, lockout, file slicer, etc.";
fDesc[10] = ", unformat, partition, RAID and image recovery. Windows 2000/XP/Vista basic and dynamic disks are support.";
fDesc[11] = "one click, then leave your computer and it will power-off automatically after all programs finished.";
fDesc[12] = "disk quickly and save the catalog information to a library.When you want a file, check the library,you can find it directly and quickly.";
fDesc[13] = "result as a picture of your disk, where the bad clusters marked, so you can see status of your disk at a glance.";
fDesc[15] = "helps you to save disk space and to prevent performance loss.";
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 = '...';
}
}