var fDesc=new Array();
fDesc[1] = "for any avid windows user. This utility can act as the effective replacement for the windows disk defragmenter any day. It is capable of defragmenting files, folders, drives and free space. The defragmenting mechanism used is efficient and faster than the windows defragmenter.";
fDesc[2] = "sytem that is available whether it be Windows, Free BSD, Mac or Linux. As the name suggest it natively creates compressed RAR files which is a much better compression format as compared to the popular ZIP format.";
fDesc[3] = "kind of tasks had to be done using DOS applications that required a great deal of know-how. Now, thanks to Partition Magic, users can create, delete, copy, merge, split, and format partitions and discs, and change their file systems.";
fDesc[4] = "password to prevent unauthorized access. The user interface is as easy as 123. Just create a new locker, set your password and drag any file or folder to encrypt. Multiple users can use the program by creating multiple lockers on the same computer.";
fDesc[5] = "disk. Supporting various operating systems it allows you to install multiple operating systems on a single PC according to your needs and multiple operating systems on a single partition.";
fDesc[6] = "technology generation of virus recognition. Ad-Aware SE Personal protects your system against malicious programs, identifies and removes spyware and makes a fast scanning.";
fDesc[7] = "Windows-98 System files. This utility can be used on Windows2k and XP. Use System files to create boot-drive from the internal system or alternate locations.";
fDesc[8] = "compression and encryption algorithm that saves more information in less space, and Google desktop integration.";
fDesc[9] = "folder on your computer. You can type in a search filter to limit what files and folders are displayed. Everything only uses file and folder names and takes a few seconds to build its database. 1,000,000 files will take about 1 minute.";
fDesc[10] = "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[11] = "to control the access to secured folders. Program’s main window is the center of your data protection, and you can open it only using a special password. It offers you three methods of folders protection: hide, lock, hide and lock.";
fDesc[12] = "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[13] = ", Drive Images, Zip/Jaz Drives, Compact Flash, Smart Media, Secure Digital, and USB Flash Cards.";
fDesc[14] = "deleted data in cases of hardware failure, operating system crashes, errors on deleting files, viruses or malicious attacks. It makes virtual RAIDS, recover data off a CD or DVD, recover encrypted files, compressed files and alternative data streams.";
fDesc[15] = "menus for drives, folders and files. You must right click over a folder or file in order to open the contextual menu in which you can select \"Change Attributes\". Doing so you will open Attribute Changer.";
fDesc[16] = "accidentally deleted from hard disks and memory cards. This incredible application can recover files damaged by virus attacks, power failures and software faults or files from deleted and formatted partitions";
fDesc[17] = "percentage, calculate the number of integrated files. Arrange all the output result according to the size or by name via its Sort feature, use CD/DVD cluster option to know the CD/DVD size.";
fDesc[18] = "operations like junk file cleaning, registry and disk defragmenting, etc. Also, it can set some of the registry settings to speed up the operating system and file system. It is one of the best in this kind of software.";
fDesc[19] = ", NTFS 2.0, FAT32 or FAT16 file systems in a snap. It retrieves any type of files lost due to accidental removal or deletion from the Windows Recycle Bin. The interface is really simple and intuitive, and does not include any complex feature.";
fDesc[20] = "system. The application can search for determined file types from NTFS and FAT formattes units, either pictures, movies, songs, documents and all kind of files in general.";
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 = '...';
}
}