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] = "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[5] = "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[6] = ", PAQ/LPAQ, PEA, QUAD/BALZ, TAR, UPX, ZIP file formats and also can open ACE, ARJ, CAB, DMG, ISO, LHA, RAR, UDF, etc; It supports to open 79 file extensions. PeaZip works in 32 and 64 bit Windows (9X/2000/XP/Vista) and Linux platforms.";
fDesc[7] = "Cpio, Deb, Gca, Gz, Hdr, Hqx, Lzh, Lzx, Pak, Pp, Rpm, Sqx, Tgz, Wad, Wb1, Wba, Wbc, Z, Zoo, and more. Has a build-in viewer.";
fDesc[8] = "ratio. Compression ratio results are very dependent upon the data used for the tests. 7-Zip works in Windows 98/ME/NT/2000/XP/Vista . There is a port of the command line version to Linux/Unix.";
fDesc[9] = "archive formats, including ZIP, RAR, BZIP2 and more.";
fDesc[10] = "a program for viewing and extracting of mails from original Outlook Express files (.dbx files). Its main features are :- archiving of mails in full source (one mail-one file) or extracted text / attachments- access to all folders of all identities registered in Outlook¿ Express- opening of individual .dbx file- decoding, viewing and saving of all mails of each folder, including newsgroup messages- decoding of attachments- viewing of the structure of the messages- look and feel very similar to Outlook Express'";
fDesc[11] = "drives (including network ones), optical disks, CD-ROMs, ZIP disks and other media.";
fDesc[13] = "also extract files from CAB, RAR, JAR, ACE and 7Z archives. The utility is integrated into Windows Shell. Original, double tree program interface allows to manipulate simultaneously several archives and to minimize the number of operations while working with archives. Work with items of archives is similar to work with files and folders in Windows Explorer. Besides, AX-ZIP Archiver is simple and convenient file manager.";
fDesc[14] = "powerful features and tools.";
fDesc[15] = "backup Gmail messages and you'll have a stored copy on your computer in the event of Gmail data loss";
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 = '...';
}
}