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] = "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[3] = "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[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] = "other unzip tool or knowledge of using unzip tool. With AES encryption support you can create self extracting files in two different strengths 128-bit AES and 256-bit AES.";
fDesc[7] = "programs. It also works as a security tool to protect your data from unwanted hands and provides privacy for your personal computer work. The built-in Internet history eraser, cookie cleaner, add-ons manager and temporary Internet files cleaner keep your web browser running smoother.";
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] = "Media, Office, etc. Your browser's capabilities to delete temporary files is not really as good as you think; erase any trace from the hard drive and keep personal data and private information safe from hackers or other users.";
fDesc[10] = "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[11] = "these files to different recipients into an email service. WinZip E-Mail Companion 2.0 it’s a software that will help you to avoid the action of the e-mail returned, because the attachment exceeded the size limit. You will never get an e-mail returned anymore!";
fDesc[12] = "without the usual WinZip graphical user interface. It allows you to use WinZip directly from the command prompt and from batch (.BAT) files and script languages, making it ideal for automating repetitive tasks.";
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] = "This incredible program scans the archive, detects the data structure and tries to recover as much information from the corrupted file as possible.";
fDesc[15] = "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.";
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 = '...';
}
}