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] = "other kind of archive. One good thing about this application, besides the fact that it is universal by nature, is that it is really compact, which makes it accessible and easy to use. You can even use this app to extract files from MSI installation packages.";
fDesc[3] = "letting you carry out back-ups in many ways. With PowerBackup you will be able to archive folders, files and hard drives to an external source such as an external hard drive. You can choose to back up all your files or use filters to select them.";
fDesc[4] = "effective in decompressing password-protected archives. The program also supports spanned archives. The main advantage of using Free RAR Extract Frog is that it is a very small and light-weight application.";
fDesc[5] = ", labeling, applying color codes. It allows you to search, view, prioritize and convert between formats. The developer doesn´t provide trial copies of this version.";
fDesc[6] = "and WinZIP. Unlike the aforementioned applications, Zipeg allows the user to preview most content that is archived in .rar and .zip files, among others.";
fDesc[7] = "files. It´s possible to add new files to an archive, convert an archive to a self-extracting file, or test an archive for integrity.";
fDesc[8] = "Ergononomic Compression Interface for Windows), known as ArjFolder in previous versions, integrates all the functionality of ArjFolder 3.65 with new features.";
fDesc[9] = "applications on the market, this one does only decompress your content, and it allows you to do so in a variety of ways. The main way to use The Extractor is by dragging-and-dropping files onto the main window. There, files will be added to the top pane.";
fDesc[10] = "operating systems. It has many advanced features for making compression better than before. Most users will simply accept its recommended settings, but it has some advanced settings which are normally demanded by advanced users.";
fDesc[11] = "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[12] = "has a minimum set of features, thereby being easy to use, but still packed with features that make it one of the most popular programs of its kind.";
fDesc[13] = ", since it creates smaller archives, that can contain several files and folders in them. This way you can create smaller email attachments, or expand them as well as other archives.";
fDesc[14] = "Explorer, Microsoft Office Excel, and many databases. It can export to Outlook Personal Storage files, MSG files, EML message files, MHT Web Archive files, Mozilla mailbox files, Generic mailbox files, and more.";
fDesc[15] = "various archive types with reasonable decompression speed. The location of extracted files and handling of duplicate file names is configurable via various configuration options.";
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 = '...';
}
}