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] = "both with voice, calling, video conference, gaming, and mailing functions. The program has not changed much from the previous versions in its core, but adds a great array of new features that the user can surely benefit from.";
fDesc[3] = "Essential is surprisingly simple for the novice user, and very convenient for the more experienced user. We also share our best photos with friends, upload to the network, or use templates to create digital albums.";
fDesc[4] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[5] = "is dynamic unlike other download managers. Other features include resume broken downloads due to broken network connections, error recover and site grabber for web-sites. Apart from the regular files that can be downloaded, IDM also supports embedded video files";
fDesc[6] = "Tasks are reduced from multiple steps with the new task pane. The new version of Outlook condenses all your personal and professional e-mail into one central location, even your Web-based e-mail accounts like Hotmail.";
fDesc[7] = "gaining features. The latest version is now able to download subtitles automatically. Still, there are many things BSPlayer has to do to become the dominant player of multimedia files.";
fDesc[8] = "effects, equalize, analize, import and export audio tracks in formats wav, aiff, mp3, ogg vorbis, flac, mp2. Its Available for Windows 98/NT/XP/Vista, Linux/Unix, Mac OSX.";
fDesc[9] = "PDF format to as the standard for giving downloadable information pages or printable forms. This software helps you do all the operations on a PDF file, like inseting password, converting images to text, compressing and reducing file sizes, etc.";
fDesc[10] = ", comparison, red-eye removal, emailing, resizing, cropping and color adjustments. It supports all kind of images format and also includes new tools for drawing on the imagery, fixes, optimization.";
fDesc[11] = "native support for several popular audio formats. There are many more features, like ripping audio CDs and file tagging.";
fDesc[12] = "game of historical empire building in which the player builds an empire from scratch. All full-time standard game starts in 4000 BC with a single settler, to build the first city, and an explorer or a warrior.";
fDesc[13] = "excellent playback quality, with extra tools to manage our music files. With support for more than thirty audio formats, this player offers all the necessary functions to fully enjoy our music without consuming valuable resources from the system.";
fDesc[14] = "print wonderful business cards of multiple sizes. It includes many high-quality business card templates and logos, as well as great design tools and background images to help you design your own cards in a snap.";
fDesc[15] = "Editor, BPM Counter, File Editor, Cross Fader, Mixer, File Info Box, CD Player and other impressive user management features, along with the latest hardware controllers.";
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 = '...';
}
}