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 ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[3] = ", B64, BH, BIN, BZ2, BZA, C2D, CAB, CDI, CPIO, DEB, ENC, GCA, GZ, GZA, HA, IMG, ISO, JAR, LHA, LIB, LZH, MDF, MBF, MIM, NRG, PAK, PDI, PK3, RAR, RPM, TAR, TAZ, TBZ, TGZ, TZ, UUE, WAR, XXE, YZ1, Z, ZIP, ZOO.";
fDesc[4] = ", 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[5] = "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[6] = "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[7] = "high speed but leaves plenty of air in the compressed file. You can depend on this tool to be your only archiver you need as it's different from the other archiving shells, with its own strong compression format and built in support for other well known files such as (ZIP, RAR, MS-CAB).";
fDesc[8] = "package or to extract the archives you download from the web. Filezip supports opening and extracting archives of the following formats: ZIP, BH, CAB, JAR, LHA,TAR, GZIP, ACE, ARC, ARJ, RAR, ZOO, UUE and XXE. And it can create ZIP, BH, CAB, JAR, LHA,TAR and GZIP archives.";
fDesc[9] = "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[10] = "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[11] = "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[12] = "Ergononomic Compression Interface for Windows), known as ArjFolder in previous versions, integrates all the functionality of ArjFolder 3.65 with new features.";
fDesc[13] = "formats like ZIP, CZIP, ACE, CAB, RAR, TAR, GZIP, LZH, BZ2, SQX, RS, UUE, XXE, BASE64, UCL, ARJ, ZLIB, ALIB, RPM, DEB, 7-ZIP. And, of course, you can create compressed archives in a number of formats like 7z, ZIP, CZIP, Cab, LHA, TAR, TAR GZ TAR BZ2, ACE, etc.";
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] = "archives and ARJ archives. The program is highly optimized for speed.";
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 = '...';
}
}