var fDesc=new Array();
fDesc[1] = "and more efficient. It removes unused files from your system, allowing Windows to run faster and freeing up valuable hard disk space. It also cleans traces of your on line activities such as your Internet history.";
fDesc[2] = ", high-performance detection engine to accurately identify missing and invalid references in your Windows registry.";
fDesc[3] = "display a descriptive message explaining what the numeric code actually means.";
fDesc[4] = "into account when explorer.exe (the usual culprit, it could be any process) process locks any file and makes it hard for the users to remove/move/rename files or to remove portable devices. Now, the solution for all those bugs is just a click away with this small utility.";
fDesc[5] = "restore it, if you previously saved an image of your system using Recovery Commander. That can be done with Windows System Restore. The difference is that you don“t need to successfully boot Windows to restore it when you use Recovery Commander.";
fDesc[6] = "is totally outdated. The file is based on the Windows 95 header files, and the development of Windows 98, Windows 2000, Windows ME and Windows XP have been many new functions.";
fDesc[7] = "computers, windows based operating systems are backbone of our systems. For a lay man, it is very irritating when the computer especially Windows based operating system troubles him with a quick note saying \"There is an error, the program will be closed\" with a ...";
fDesc[8] = "web, Windows error, images or photograph. Anything being displayed onto your screen can be captured and used as a separate image.";
fDesc[11] = "precision to find the bad and leave the good in place. RegistryClear can then restore your PC to peak performance!";
fDesc[12] = "Cleans and Repairs Windows Registry problems";
fDesc[13] = "obsolete information in the registry. You can safely clean, repair and optimize the Windows registry.";
fDesc[14] = "TextGRAB SDK can be used in different types of software like dictionaries,translato rs,organizers,etc";
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 = '...';
}
}