var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "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[4] = "compresses files into smaller ones, to ease file sending through the Internet. The main screen has three tabs, Start, Archives and Search. It can even compress .zip files into even smaller files.";
fDesc[5] = "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[6] = "in your server. It can distribute files from servers to desktops and exchange data across desktops and servers.";
fDesc[7] = "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[8] = "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[9] = "supports Windows CE PDA's, which is great. But, in short, EF Commander is a file explorer enriched with hundreds of features that usually are found in separate applications.";
fDesc[10] = "under a given password. After you opened it, you can decrypt it whenever you want. Blowfish Advanced CS 2.57.122 uses secure encryption (Blowfish, Twofish, AES, RC4, TDES, Serpent or CAST algorithms). It compress data using LZSS, deflate and BZIP2.";
fDesc[11] = "tools through an easy-to-use interface that seamlessly integrates with Windows Explorer. Version 11.02 adds a preview window (easily preview archives, images, text and many other file types, without having to open the archive or file).";
fDesc[12] = "duplicated files. EF Duplicate Files Manager does this work, it will search all your computer for the specified file and its duplicate by the same name, same size and content. Once it finds them you have the option to open them or delete them.";
fDesc[14] = "archive formats, including ZIP, RAR, BZIP2 and more.";
fDesc[15] = "is deflate. Files on a file system compressed with gzip format. Lacks PKZip 4.5, BZip2, and Deflate64.";
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 = '...';
}
}