var fDesc=new Array();
fDesc[1] = "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[2] = "registry is of the uttermost importance for your computers performance. The more applications you install and uninstall, the more registry entries will be left on the registry, making it bigger, and thus, forcing your system to read a bigger file, which takes more time.";
fDesc[3] = "several parameters necessary for the system configuration. The registry is changed and updated as you install or uninstall programs. These changes may leave invalid entries behind, that yet will be read unnecessarily each time you run a process, making it slower.";
fDesc[4] = ", uninstaller, system optimization tool and much more.";
fDesc[5] = ", the TweakNow RegCleaner is the tool that people from TweakNow offer you to clean up your Windows registry. It comes in two versions: Standard and Professional.";
fDesc[6] = "Registry becomes changed, with new entries created, that not always are deleted when you uninstall that program. The Registry will then begin to accumulate obsolete entries, that will significantly increase the registry size and slowdown your computer.";
fDesc[7] = "problems, and will then repair those errors instantaneously. - FREE DOWNLOAD";
fDesc[8] = "technology, deep knowledge and field experience to bring system registry care to a new level.";
fDesc[9] = "neccesary files for the proper function of the programs are located. Even when, apparentely, everything related to a program is deleted upon unistallation that's not quite true. RegCleaner searches and removes obsolete entries from your Windows Registry";
fDesc[10] = "scan your pc, and delete or recover files. You can also create a restore point or an automatic backup of the deleted entries. It also permits you to defrag and schedule the scanning according to your preferences.";
fDesc[11] = "can become a serious problem for its’ performance. Registry Fast 4.0 is a small but very useful application with a range of included features for finding and repairing such errors.";
fDesc[12] = "problems, and will then repair those errors instantaneously. - FREE DOWNLOAD";
fDesc[13] = "under the hood of your computer.";
fDesc[14] = "clicks.You can restore any changes made using the software by choosing Restore registry backup.";
fDesc[15] = "option that lets you restore the registry in case you run into problems.";
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 = '...';
}
}