var fDesc=new Array();
fDesc[1] = "ability is basically to look up for errors in the system registry, kind of an important part of your system. Professional tool for only 24,95 dollars";
fDesc[2] = "application physically defragments the Windows registry file to give it the proper linear structure.";
fDesc[3] = "criteria, and display them in one list. After finding the Registry values, you can easily jump to the right value in RegEdit.";
fDesc[4] = "and invalid entries, and running in perfect conditions. On the left of the Main Window, we can select several options or modes, Registry category features: Editing, Manual Cleanup, Automatic Cleanup, Search and Replace, and Optimization.";
fDesc[5] = "of several registry keys. You can explore the tweak database, select and apply tweaks, save them in profiles, perform undo operations and more.";
fDesc[6] = "uninstalling programs, every change writes and deletes entries in the system registry. The deletion of entries will leave gaps in your Windows´ registry. Free Registry Defrag was made for solving this.";
fDesc[7] = "better. It not only checks every component and every folder of your system to make sure you do not host more files than those you need, but also monitors your disk space, your memory performance, and all your running processes.";
fDesc[8] = "solution for administrators and power users for maintaining the Windows registry.";
fDesc[9] = "errors in the registry file, performs other tasks to keep your computer at an optimal performance. Its installation process is very easy to perform, and the bundled documentation is very complete and detailed. ErrorFix runs on Windows platforms.";
fDesc[10] = "Windows registry involves many, many files to work with; each one has its own purpose to make Windows program runs. The Registry File is the brain into this file it will register all the software you have in your PC with all the required parameters to run under Windows platform.";
fDesc[12] = "privacy by deleting all this old data. Clean up your Registry one time per month and be sure to have a fast and secure system!";
fDesc[13] = "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[15] = "entries from the Windows registry and save those into a separate registry file (with an extension .REG). The saving of registry entries in this .REG extension is done so that it can be easily exported into any other registry.";
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 = '...';
}
}