var fDesc=new Array();
fDesc[1] = ", multilingual, and completely customizable. This utility gives us the opportunity to delete all the useless and obsolete data that we may be keeping in our system.";
fDesc[2] = "Program often can not completely uninstall some applications and broken registry keys. Revo Uninstaller is a better and easier way for you to completely uninstall any unneeded application that standard Windows Add/Remove Program can't remove.";
fDesc[3] = ", search for unnecesary files, manage the start up menu so you can change whatever you might need, shortcuts that have become invalid, check the disk free space in your HD unit, manage the add/remove programs list, etc. to get the best results on your system operation, perfomance and speed.";
fDesc[4] = "etc., created by a particular application, and then remove it completely. There is an \"AutoFix\" button. It can search for invalid uninstall information and delete/correct it. It cannot search for invalid registry entries caused by a previously uninstalled program though.";
fDesc[5] = "modifying the host's OS. This software isolates navigation files and applications functions which it redirects into a system replica or \"sandbox\".";
fDesc[6] = "files from NTFS/NTFS5 and FAT12/FAT16/FAT32 files systems at high speed. It allows you to recover accidentally deleted files or folders, permanently deleted files using the keys Shift + Delete, among others.";
fDesc[7] = "accomplished by deleting entries in your browser cache, browser history, bookmarks, favorites and cookies, your recently visited sites, your recent documents folder, entries in the Run dialog, emptying the Recicle Bin and the temporary folders, entries in your system's registry and more.";
fDesc[8] = "only needed temporarily and erasing them will release important hard drive space. It runs quietly on startup, clearing the cache every time Windows boots.";
fDesc[9] = "that are left behind on your computer and which slow the entire system down. There is a user friendly interface that shows the progress of the searches and once all the garbage files have been found you can clean them from the system.";
fDesc[10] = "which assist the user in performing total clean up of the PC. Whenever user uninstalls any software, temporary files and files not deleted often remain on the hard disk, but the \"Clean Uninstaller\" tool takes care of this problem.";
fDesc[11] = ", temporary Internet files, list of recent files etc. This program is a simple and efficient tool that sets clearly defined limits just with the help of a few mouse-clicks in a moment. It provides space on hard disk and security while surfing.";
fDesc[12] = "Accessed Documents, File and Computer Search History, and many more. This is why PC Scan and Sweep will protect your system’s performance, disk space and your privacy.";
fDesc[13] = "programs should automatically delete any temporary files and folders they create, but many don't (including Microsoft programs such as FrontPage). Over time these files can grow to occupy a large chunk of your hard disk.";
fDesc[14] = "temporary and unused files from it. This way the software optimizes your system and enhances its performance by getting rid of all types of temporary files related to Windows, Internet tracks and other cache files.";
fDesc[15] = "files, especially in the operating systems such as Windows 2000, XP, Vista and Windows Server. The new verson maintains an effective vigil on the cache files, control the processes happening inside the memory portion of the system and helps in restoring the memory occupied by cache files.";
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 = '...';
}
}