var fDesc=new Array();
fDesc[1] = "range of encoded, compressed, and disc-images files. It also includes very powerful features in a very easy-to-use application interface and Windows Explorer integration.";
fDesc[2] = "most common compressed archives including ZIP, RAR and 7z. QuickZip is a FREE alternative to WinZip, WinRAR and PowerArchiver. Although its interface is not the paradigm of beauty, QuickZip is powerful, full featured and has lots of tools like Search in Archive, Archive Finder, etc.";
fDesc[3] = "Supports Multi-volume RAR archives; Supports a user-defined character set. Autosave feature. Auto Update.";
fDesc[4] = "Dictionary attack. Supports Multi-volume RAR archives; Supports a user-defined character set. Autosave feature. Auto Update tool.";
fDesc[5] = "recover a lost or forgotten pasword from an encrypted zip archive. It doesn't matter whether if it was created using WinZip, PKZip or any other ZIP software or if it's a self-extracting Zip-archives (SFX); all are accepted.";
fDesc[6] = "protecting them with the password and encryption techniques of the compression utility then be careful about the password. If you forget the right password then your will not be able to extract your files without providing right password. In this situation you will require Zip Key utility.";
fDesc[7] = "security purposes to prevent leaks you know it also represents a risk if a password is lost. Its user interface was created as a wizard and contains a lot of contextual prompts.";
fDesc[8] = "repairing zip file structure and recovering data within. It overcomes CRC (cyclic redundancy check) failures by scanning the corrupted zip archive and by comparing its current and original CRC values.";
fDesc[9] = "from RAR archives, it minimizes data loss during recovery. Repair encrypted data from RAR archives. Fix Rar files and restore corrupted Rar files.";
fDesc[10] = ", WinRAR or any other ZIP-compatible software.";
fDesc[11] = "files, folders and entire directory trees using most secure algorithms. It also features shredder and wipe-out utilities.";
fDesc[12] = "lost and forgotten passwords for encrypted zip files. The software has a very intuitive and simple to use interface, which provides easy to understand controls for recovering passwords from zip files comfortably and quickly.";
fDesc[13] = "Zip archives and recover your data in them as much as possible, so to minimize the loss in file corruption.";
fDesc[14] = "algorithms for creating encrypted archives and self-extracting EXE files, as well as for sharing files over the Internet.";
fDesc[15] = "minimizes data loss during recovery. Repair encrypted data from ZIP archives. Fix Zip files and restore corrupted Zip 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 = '...';
}
}