var fDesc=new Array();
fDesc[1] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[2] = "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[3] = "very good partition manager considering its capabilities. It has all the components / functions required for a partition manager. It gives a wizard like interface when the program starts. There is also an advanced version for experienced users.";
fDesc[4] = "the way you need it easily. The user interface is very simple and straightforward. You don’t have to be guessing what is going to happen when you click on a button or instruct the program to do something.";
fDesc[5] = "accompany you anytime, anywhere.";
fDesc[6] = "information, Process manager, Optimizer, 1 click cleaner, Repair center, Start up manager, System speed booster, Junk file cleaner, Registry Cleaner, Wallpaper changer, Privacy protector, File Splitter, Shutdown manager and many more utility tools that can customize your system for best performance.";
fDesc[7] = ", boot management, data and system security, simple recovery. Convenient and clear interface, smart wizards. Now supports Vista!";
fDesc[8] = "files which are wasting your disk space, and cleans out your Internet history files.";
fDesc[9] = "if the partition table, or boot sector on hard disk is lost or damaged due to a virus attack, software failure, Fdisk or Partition Magic misapplication among other reasons.";
fDesc[10] = "solution for administrators and power users for maintaining the Windows registry.";
fDesc[11] = "or XP system by using many tools which optimize key areas of Windows operation.";
fDesc[12] = "system recovery.";
fDesc[13] = "broadcasts, etc) from the Internet to play it later offline. With this program you will be able to save a lot of time and money, since you can leave it downloading multiple content at the same time, and even schedule downloads specifying the URL, etc.";
fDesc[14] = "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[15] = "drivers and removable devices. After the scanning is completed, we will be able to know the size for each selected unit, folder, file, etc., in Bytes, Kilobytes, Megabytes, and Gigabytes. It is possible to see the content volume in percents, sort by name, size, 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 = '...';
}
}