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] = "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] = "user of compact cameras, ACDSee taking a more professional version for the advanced user. For the price it has is an interesting option for the purchase by the amateur .";
fDesc[4] = "Windows O.S. It has a lot of features for handling and managing files and folders. Its user's interface is similar to the famous old program, Norton Commander.";
fDesc[5] = "supports many compression formats (more than 20 compressed archive formats), and it shows all the compressed archive information. For compressed files, it offers the possibility of extracting one by one or all the files to a given folder, reload the list, etc.";
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] = ", creates and modifies ZIP files quickly and easily.";
fDesc[8] = "features a very simple and intuitive user interface that can be used by anyone since it does not require any special knowledge. It is very light and functions wonderfully and offers most of the options of the Acrobat Reader.";
fDesc[9] = "is an easy file compression & security program, thecompression / extraction wizards make working with archives simple providing advanced features. This is done with a small number of steps and some steps can be skipped to use default options.";
fDesc[10] = "click on unzip, UnZip Me will automatically take you to the folder where the files are extracted. The same is with zipping of file, just locate all the files you want to zip and click on the zip button to compress and save as a zip file to desired location,";
fDesc[11] = "easy step. Free Zip Wizard can also run any program or setup file inside Zip files.";
fDesc[12] = "features to increase the work efficiency. The program allows you to download a zip file, providing you with automatic unzip facility, launch web pages for easy advertising, supports multiple languages and much more.";
fDesc[13] = "an utility to compress them. Unfortunately, this Wizard needs to learn new magic tricks, because it can“t neither create compressed archives nor extract other file formats apart from ZIP.";
fDesc[14] = "without having to unzip them first! ZipMagic includes the patent-pending ZipFolders technology, which safely and transparently shows zip files ...";
fDesc[15] = "type of zip files from your computer or internet with only a click. 1 Click UnZip 3.0 also enables users to directly run application setup files after the unzip process is completed.";
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 = '...';
}
}