var fDesc=new Array();
fDesc[1] = "PC from numerous threats. The application is free, easy to use and, in a few minutes, will make your computer run much better. It scans your system searching for potential issues with your shortcuts, spyware, registry, and start up programs, and then enables you to clean them up.";
fDesc[2] = "your PC, and restore them in case there is an error, or something unexpected happens to your PC. The backups can be saved in removable devices or in hard drives. Plus you can use the Nero Backup Online to save your data and restore it from there.";
fDesc[3] = "your windows registry. After this your computer will have more speed and a better performance, just as a brand new equip.";
fDesc[4] = "known feature it includes is the option to keep translucent borders when a window is maximized, something that Windows Vista turns to black automatically.";
fDesc[5] = "the same day every single morning. Everything looks the same, feels the same, and works the same. There is no way you can change anything, and that, I guess, is a good thing.";
fDesc[6] = "components in your PC easily. The program can completely remove any application along with the empty folders and registry entries. You can also see every detail of installed applications like installed location, version, developer name, developer home page and much more.";
fDesc[7] = "the system. The enterprise edition of Deep Freeze offers a centralized control and better management options to system administrators.";
fDesc[8] = "recovery points. Useful for resetting a PC to a point when it was running correctly. All this and more with the easy-to-use Norton Save & Restore software.";
fDesc[9] = "The utility checks all the system to verify if there exists any kind of errors that affects the computer functionality and automatically corrects them. the utility also searches for spyware and adware. If you want, the program can monitor your computer in the background in real time.";
fDesc[10] = "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[11] = "it takes that you remember it. PC Backup gives solutions to those problems. PC Backup from Mingo Software is a very complete and easy-to-use suite for backup creation and restoration with a lot of “bonus” tools that make it a professional software.";
fDesc[12] = "at the built-in features it possesses: drive defrag, freeing up RAM space, web acceleration, maintenance wizard, registry cleaner, safe registry backup and restore, scan disk, system restore, system scrubber, uninstaller, undelete, wipe, file rename, lockout, file slicer, etc.";
fDesc[13] = "XP problems. System restore can be extremely helpful to return your system to an earlier state in case there has been a problem caused by the recovery of deleted files, malicious website, virus, a corrupted registry, a recently installed application, among many others.";
fDesc[14] = "space as possible. You must know that Windows XP System Restore default settings use up to 12% of your disk space, creating a Restore Point every 24 hours and maintaining old points for 90 days before deleting.";
fDesc[15] = "utility will help you to reliably backup, protect and restore individual files or folders or restore your entire hard drive. Besides, it includes disaster recovery. And using DVD + RW device enables you to place all necessary data in one disk. It can cope with a huge storage tasks.";
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 = '...';
}
}