var fDesc=new Array();
fDesc[1] = "utility developed by Microsoft Corporation to upload and share any type of files, like photos, music, documents, etc, with your family and friends through SkyDrive.";
fDesc[2] = "the Internet, used in sites like YouTube and thousands more. But they can´t be viewed in most players like Windows Media Player. That´s why this program is useful.";
fDesc[3] = ", like Windows Media Player. Version 2.23 includes Subresync for fixing subtitle sync problems, SubMux for muxing SRT subtitles (and audio tracks) with AVI/DivX files, VOBSub cutter, Sub Cutter and Joiner.";
fDesc[4] = "your drives, which does not provide you with any information about used space and free space in the drives. But here is an opportunity for you to get Window Vista style icons, which not only have modern stylish look but also tell you about consumed and free space of drives.";
fDesc[5] = "Solomon algorithm and for verifying and repairing files that are corrupt or disnamed. It can be used to verify that a set of files have not been corrupted, or for reconstructing corrupt files, if you have sufficient Parity Volumes to match the missing or corrupt files.";
fDesc[6] = "has been designed to receive the latest news for our Nikon products. We can access this application from the Nikon Transfer program interface.";
fDesc[7] = "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[8] = "Firefox 1.0 - 2.0, Mozilla Thunderbird 1.0 - 2.0, Mozilla Suite 1.7 - 1,7x, SeaMonkey 1.0a - 1.1, and Netscape 7.x. This small and easy to use application creates profile backup files contacts, emails, cache, history, bookmarks, extensions, etc. and restore them later on.";
fDesc[9] = "package or to extract the archives you download from the web. Filezip supports opening and extracting archives of the following formats: ZIP, BH, CAB, JAR, LHA,TAR, GZIP, ACE, ARC, ARJ, RAR, ZOO, UUE and XXE. And it can create ZIP, BH, CAB, JAR, LHA,TAR and GZIP archives.";
fDesc[10] = "computer problems, without compromising your privacy. BigFix is a fast and reliable way to shield your computer from the late...";
fDesc[11] = "You can download them from lots of flash websites. If you needed any time to see what´s in an .SWF file, SWF Opener 1.3 will be a great help.";
fDesc[12] = "most common compressed archives including ZIP, RAR and 7z. QuickZip is a FREE alternative to WinZip, WinRAR and PowerArchiver. Although its interface is not the paradigm of beauty, QuickZip is powerful, full featured and has lots of tools like Search in Archive, Archive Finder, etc.";
fDesc[13] = "surface, all files and partitions are eliminated, and it defines or re-creates the tracks and sectors on the disk. Then, it is possible to fix or repair a damaged disk.";
fDesc[14] = "built-in FLV player, so the user don't have to install any extra player. User interface is very easy tu use and helps any user, expert or novice, to select the videos to download from the YouTube site.";
fDesc[15] = ", including ZIP, RAR and ACE. It’s a basic free alternative to WinZip, WinRAR and PowerArchiver. You can use it, for instance, to compress your birthday photos in a single file or to open the book collection you bought online.";
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 = '...';
}
}