var fDesc=new Array();
fDesc[1] = "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[2] = "for virtually all compression formats, including 7z . It is easy to use and offers a flexible working environment. Probably, one of the best alternatives in file compression software.";
fDesc[3] = ", ALZip is free, it handles over 30 compression formats, including ISO, plus it is twice as fast extracting files as WinZip. Among other useful features, the program also includes a password recovery tool.";
fDesc[4] = "popular compression formats. It’s powerful, easy to use, versatile and even has a nice interface. You can compress and decompress most archives using the same program.";
fDesc[5] = ", 7-Zip… The jZip – developed by Discordia Ltd. – is one more option to take into account and deserves our attention due to its effectiveness, ease of use and freeware license. This tool is based on the well known 7-zip archiving technology developed by Igor Pavlov.";
fDesc[6] = "application allows you to crack the protection of both ZIP and RAR files created with most applications. It uses two methods to achieve this task: a brute-force approach and a dictionary-based approach.";
fDesc[7] = "for RAR/WinRAR (2.xx and 3.xx) archives. This incredible program includes the following modes to recover the passwords: \"brute-force\" attack, dictionary-based attack and dramatically fastest \"Booost-Up\" attack.";
fDesc[8] = "satisfy both novice and advance users. It supports almost all compression and encoding formats, so users will not find any difficulty handling files compressed with other compression utilities.";
fDesc[9] = "space or to hide your sensitive information from prying eyes, protecting it with a password. Other things you can do with this powerful program are automating the process of backing up your important data and creating self extracting files.";
fDesc[10] = "is programmed only for RAR/WINRAR archive files of version 2.x and 3.x. It gives two options to the end user to regain the password. The first is by using a brute force attack which tries all the combinations of the characters";
fDesc[11] = "folders promptly and easily. Direct Folders ensures fast and direct access to your preferred folders and recent documents. Jump out to any profoundly nested folder with a single click.";
fDesc[12] = "password search attacks are supported in full.";
fDesc[13] = "to save disk space or to hide your sensitive information from prying eyes, protecting it with a password. Other things you can do with this powerful program are automating the process of backing up your important data and creating self extracting files.";
fDesc[14] = "create compressed archives. You can use AlphaZIP, for instance, to compress your party photos and send them to your party friends. It must fulfill all you daily file compression requirements.";
fDesc[15] = "back up presets, which are also quickly accessible. The application serves as an easy-to-use backup shell for WinRAR archives and provides higher compression rates and safety to all the documents in comparison to the usual ZIP backups.";
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 = '...';
}
}