var fDesc=new Array();
fDesc[1] = "criteria, and display them in one list. After finding the Registry values, you can easily jump to the right value in RegEdit.";
fDesc[2] = "us analyzing the changes made to our Windows Registry. We can download the trial version available from the developer’s website, and evaluate it for a 30-days period, after installation.";
fDesc[3] = "features that were missing in the inbuilt registry editing tool from Windows. RegAlyzer offers view of registry entries and keys along with their security information and change logs.";
fDesc[4] = "Pro. Both of them search the system and then show an initial window with all the installed programs with their corresponding icons so the user can recognize which program has to be uninstalled. It also can export this list for printing purposes.";
fDesc[5] = "solution for administrators and power users for maintaining the Windows registry.";
fDesc[6] = "approach. Taking a lot from Firefox and the like, XYplorer adds a tabbed interface to the everyday use of file managers. Thus, you don't have to scroll through tens of windows to find the one that you know is somewhere.";
fDesc[7] = "advanced tool that enables you to control registry values. Using it, you can easily edit, delete copy/paste registry values, and also export, search, backup and restore a complete registry.";
fDesc[8] = "quickly locate the program you wish to remove. Next, highlight the program title and select \"Uninstall\". It runs the uninstall utility and ensures that the program is removed from the list. In this manner all users can easily and completely get rid of all unnecessary programs.";
fDesc[9] = "safely. Serial Key Manager 1.8 does not hold its own database. Instead, it creates registry entries which it reads on startup. Those hold your serial numbers. This is a rather double-edged approach.";
fDesc[10] = "The user can arrange icons in groups, and customize the application to show or hide Windows Updates, search for programs by its name or its publisher name, export any program uninstall information to Registry file.";
fDesc[11] = "Supports command-line launching and can handle custom protocol calls (regjump://) to launch RegEdit from Urls.";
fDesc[12] = "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.";
fDesc[13] = "snapshots are automatically compared to produce an analysis which is then displayed in the Tracker Explorer.";
fDesc[14] = "files. Alien Registry Viewer works with registry files copied from other computers.";
fDesc[15] = "programs installed on your machines. Manually opening registry editor and then searching for specific registry keys isn't an easy task";
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 = '...';
}
}