var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "supports mpeg2 (that is, Quick time is now compatible with .mpg, .mpeg, .vob, .vro, .m2v, .m2a, .m2s). It is also compatible with a variety of audio formats like AIFF, WAV, MOV, MP4 (AAC only), CAF and AAC/ADTS. QuickTime also opens images in jpeg format and other image formats.";
fDesc[3] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[4] = "Macromedia Exchange site or you can create and install with Extension Manager 1.7. When you install Extension Manager 1.7, makes a search for previously installed extension.";
fDesc[5] = "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[6] = "erased showing the directories or files that use more space. Also you can see all the file extensions and which extension is the more used in your computer. WinDirStat runs in all Microsoft Windows platforms.";
fDesc[7] = "offers the following features: quick view of the graphics configuration (graphics card / GPU type, amount of video memory, drivers version).Display of the main OpenGL capabilities (OpenGL version, texture size, number of texture units, etc.)";
fDesc[8] = "extension.";
fDesc[9] = ", shred, split, rename one or more files, change extensions, dates and attributes, preview images, and 42 more!";
fDesc[10] = ", anyone can now implement a scalable VoIP based PBX. This incredible program works as a telephone switch connecting to phone lines and extensions using the latest VoIP technology.";
fDesc[11] = ", and good functionality. The application is helpful in editing and debugging source code. Its key features include error indicators, syntax styling, code completion, and call tips.";
fDesc[12] = "also from Adobe (formerly Macromedia). It is compatible with Windows XP with Service Pack 2; Windows Vista all flavors (32 bits editions) and requires1GB of RAM, 1,024x768 display with 16-bit video card.";
fDesc[13] = "in file's and folder's context menus and makes it very easy to change a single file's extension and extensions of multiple files.Files and folders can be added using drag and drop and extensions of multiple files even from different folders can be changed in seconds.";
fDesc[14] = "wish to change the file extension, and select one file or multiple files. The file name extensions available are: ZIP, RAR, HTML, HTM, MP3, TXT, BMP, DOC, and JPG. System requirements: Microsoft Windows 95, 98, NT4, 2000, Me, and Xp.";
fDesc[15] = "utility is organized into domains and the file extension listing in alphabetical order. Owing to the huge size of the list of file extensions, Extensions organizes it into group of A to I, J to Q and R to Z.";
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 = '...';
}
}