var fDesc=new Array();
fDesc[1] = "remote computer is a linux/unix machine. It offers file manager functionality. It uses Secure Shell (SSH) and supports legacy SCP protocol. The graphical user interface is more like windows explorer, with drag&drop capabilities and icons.";
fDesc[3] = "use program that allows you to skip important folders by specifying them in settings or by marking them as a protected folder.";
fDesc[4] = "videofiles (DIVX,MPEG,AVI,etc) and DVD's using fast hashing. It uses fast hashing algorithm (27 GB movies/7 seconds), search subtitles recursively from your divx folders, upload entire series seasons subtitles in less than 1 minute. # Many more features";
fDesc[5] = "formats into MP3 format";
fDesc[6] = "text file. This can come in handy: I use TXTcollector myself to grab a CD full of readme's to enable me to read them all in one go. At work I use it to combine daily and weekly reports and to combine server backup logs. Some users find this application perfect for combining their network log files. Options/Features: - grabs all .txt files from a directory and combines them - puts directory-, file name and separator between each text file - possibility to add your own extensions and separators - popup list with files ready to be merged - able to recursively search directories - allows continuous merging (without Carriage Returns) - runs on Windows 95/98/ME/NT4/2000/2003 /XP/Vista";
fDesc[7] = "from the user hard drive. This application features a variety of shredding algorithms, which protects the user's privacy by completely removing the selected files so that no file recovery software available in the market can recover them.";
fDesc[8] = "wildcards and changing attributes of files in subdirectories recursively.";
fDesc[9] = "unlimited number of archives. Support for .zip, .arj, and .rars. Ability to CRC check entire directories or individual files. Recursively search drives and directories for archives. Error Log reports all files with errors.";
fDesc[10] = "and exclude files to upload with options.";
fDesc[11] = "them. That means your data contents one overwritten and destroyed and can't be recovered. Also includes a scheduler and multi language support.";
fDesc[12] = ", ARJ, RAR, LHA, LZH, ZIP2EXE, RARSFX, ARJSFX, and LHASFX archives, and additionally, PKLITE, EXEPACK, DIET,...";
fDesc[13] = "previously deleted files on your hard drive. Shred Files, Folders, Recycle bin, drag & shred, DoD conform. Shred locked files & more.";
fDesc[15] = "finds the thumbs and full-sized pictures, discards text, banners, adds and pop-up windows. The thumbnails of each page are pre-view...";
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 = '...';
}
}