var fDesc=new Array();
fDesc[1] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[2] = "time. Using this program you will be able to recover the initial speed of youe disk units. In fact, it is much faster than many of its competitors, even it allows you to keep using your PC during the defragmentation process.";
fDesc[3] = "interface, a faster engine and new reporting features to keep your system running at top performance.";
fDesc[4] = "drive so we get a better performance. If we notice that our computer goes very slowly and we do not have an excess of programs or application, we may need to defragment the files in our hard drive and that is precisely what this program is aimed for.";
fDesc[5] = "intelligently tweaking numerous key Windows settings for dial-up, cable, DSL, wireless.";
fDesc[6] = "isn't practical-it takes too long. Diskeeper is the the number one automatic defragmenter";
fDesc[7] = "options included on the original program through a graphical interface. This program is distributed as a Freeware program and is available in several languages.";
fDesc[8] = "Optimize Windows * Monitor System Activity It's easy to use! Even if one single application offers numerous features it is easy to use.";
fDesc[9] = "speed. Disk fragmentation can cause performance problems. You should consider running a defragmentation program on a regular basis.";
fDesc[10] = "contigous blocks / allocation units. This can slow down the system severely and cause the hard disk to work more if the fragmentation levels are high. Diskeeper can automatically defragment the hard disk. You can specify the Disk priority and CPU priority.";
fDesc[11] = "corruption. This program will provide you multiple features as the repair of defects by the rebuilt of the registry, remove the fragmentation, it will compact the registry by removing the gaps and the unused space, etc.";
fDesc[12] = "settings: Quick defrag, Complete defrag and Advanced defrag. All of those vary only in the extent and accuracy at which the application changes your filesystem.";
fDesc[13] = "the disk, in search of file fragmentation. When there are available system resources, the program defragments it. With a modern interface, you can access to all of the information relative to the data storing without having to be an expert.";
fDesc[14] = "utility monitors the Master File Tables and the paging files, components that have to be in the best form to bring an optimum system performance. The utility can be configured to work with no performance degradation of the system, running always in the background.";
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 = '...';
}
}