var fDesc=new Array();
fDesc[1] = "manage your data. It´s portable, so you can take it, just copying the installation directory on a CD, Pen Drive or a floppy disk. FreeCommander Version 2007.10a is multilingual, supports 10 languages.";
fDesc[2] = "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[3] = "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[4] = "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[5] = "wizard-like approach for executing backup tasks. Apart from just storing files to a desired location, the program also has capabilities to synchronize, mirror, and group files.";
fDesc[6] = "format, KGB. It has an interface that works as a wizard, adds its options to the Windows Explorer, and shows the statistics after compressing / decompressing.";
fDesc[7] = "innovative way to access compressed files since it mounts them or opens these files on a virtual disk without extraction.";
fDesc[8] = "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[9] = "illegal tool, but it is actually the opposite. Sometimes, we forget the passwords we set for our password-protected ZIP files, and there is one way to do it.";
fDesc[10] = "works fine but it's useless if you have Windows XP or Vista, because you can create, open and extract ZIP archives within Windows Explorer without the help of any additional program.";
fDesc[11] = "the most used formats for compressing and sending files around the web. With so many people using and sending these files, they are bound to get damaged now and then.";
fDesc[12] = "test, fix and process the corrupted and unusable Zip archive files whether it is partially damaged zip archive file or you have a partially downloaded file, it will work on all such files. It actually reconstructs the new zip file by recovering the contents of the corrupted or damaged zip files.";
fDesc[13] = "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[14] = "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[15] = "This incredible program scans the archive, detects the data structure and tries to recover as much information from the corrupted file as possible.";
fDesc[16] = "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[17] = "easy step. Free Zip Wizard can also run any program or setup file inside Zip files.";
fDesc[18] = "pay attention to this tool intended to perform the two basic actions you need in this regard: to create .zip files, and to open them.";
fDesc[19] = "installation. The installation process is fairly simple and this application is compatible with most of Windows OS version’s (98, ME, NT 4.0, 2K, XP and Vista).";
fDesc[20] = "Repair you will gain access within minutes to files you thought were lost inside your corrupted Zip file.";
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 = '...';
}
}