var fDesc=new Array();
fDesc[1] = "defraging the drives and consolidating the disk free space. The application defrags the units in different ways: Automatically and Manually (user turns on/off the process).";
fDesc[2] = "interface, a faster engine and new reporting features to keep your system running at top performance.";
fDesc[3] = "frequent disk defragmenting at your hands. This software will also improve the performance of your computer. InvisiTasking in Diskeeper 2009 13.0 lets you keep your system hard drive defragged all the time without using any active resources of the system.";
fDesc[4] = "isn't practical-it takes too long. Diskeeper is the the number one automatic defragmenter";
fDesc[5] = "side, so your hard disk won´t have to track them down. This is accomplished reading every part of a file, writing them in a temporary place, and the rewriting them in its permanent location.";
fDesc[6] = "but the best will do then Diskeeper 10 Professional Premier Edition is a must-have.";
fDesc[7] = "speed. Disk fragmentation can cause performance problems. You should consider running a defragmentation program on a regular basis.";
fDesc[8] = "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[9] = "a modern interface, you can gain access to all the complex functions associated to the optimization of your hard disk.";
fDesc[10] = "comparison with regular defragmentation utilities. Some of them are: Terabyte Volume Engine, Unlimited Single Volume Size, InvisiTasking, Intelligent File Access Acceleration Technology, and Frag Shield among others.";
fDesc[11] = "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.";
fDesc[12] = "which purpose is to handle all defragmentation tasks automatically. It uses I-FAAST (Intelligent File Access Acceleration Technology) to improve by up to 80% the file access and creation rate. With the Frag Shield technology defragments master file table and paging files.";
fDesc[13] = "specifically designed for servers. Some exclusive technologies includes: Titan Defrag Engine, compatibility with Windows Server and Windows Clustering, Terabyte Volume Engine, and I-FAAST (Intelligent File Access Acceleration Technology).";
fDesc[14] = "for, no matter how old the system may be. It provides the system with full control of the machine which allows it to fragment the hard drives of the system, which are responsible for very important system resources.";
fDesc[15] = "EnterpriseServer over a network. Its implementation will be justified for middle-sized and bigger networks. It provides a 45-day trial version for Network Administrators to assess its implementation in a particular network.";
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 = '...';
}
}