var fDesc=new Array();
fDesc[1] = "additional functions like support for secure connections, folder monitoring, file synchronization, among others. It allows you to resume downloads and uploads, and filter and transfer files of more then 4GB as well.";
fDesc[2] = ", rename, move, encrypt/decrypt, and print our files.It comes packed up with many features, i.e., we can view our pictures as a slideshow, take screenshots, use the calculator, and many more. It automatically installs our shortcuts desktop icons into the Main Window.";
fDesc[3] = "network computers instantly, supports searching within compressed archives and duplicate files on your system.";
fDesc[4] = "program can be an excellent alternative to Windows Explorer. With Turbo Browser you can preview almost all files formats: text files, documents, graphical and multimedia files and others.";
fDesc[5] = "underwater creatures that will try to outwit PacFish in his pursuit for food. You will find sharks, jellyfish, crabs and many others. Some will seem to be one step ahead and predict PacFish's moves.";
fDesc[6] = ", CAB, UnZIP single or multiple files without even opening the program. Right-mouse menus and drag and drop bring you convenience.";
fDesc[7] = "accessible to all users. It opens all major archive and E-mail attachment formats with built-in internal viewing.";
fDesc[8] = "such as your favorite software, mp3 files, video files, picture collections, etc.";
fDesc[9] = "network drives - Files and Folders deleted using DOS commands.";
fDesc[10] = ", WinRAR or any other ZIP-compatible software.";
fDesc[11] = "instantly, supports searching within compressed archives and duplicate files on your system.";
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 = '...';
}
}