var fDesc=new Array();
fDesc[1] = "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[2] = "DVD from home videos. You can playback digital media files, and make an archive song collection in MP3. You can also backup personal data and legally record DVDs.";
fDesc[3] = "collections of all the imaginable music styles. Last.Fm opens a whole universe of new music, only by creating an account and downloading its freeware software.";
fDesc[4] = "contains a powerful search tool that lets you find and download sound files (mp3, wav, midi, etc.), Image or video (movies, trailers, jokes, graphics) on the Internet.";
fDesc[5] = "keyboard as accurately as possible. The game is pretty much a port of games like Guitar Hero and Rock Band, but for the PC, Mac and Linux. That is one of its greatest features: that no matter what computer you have, you can play it.";
fDesc[6] = "wireless guitar that you can use to play the game. The goal of the game is to play the songs that are featured on the game with your guitar. That is achieved by hitting notes when they appear on screen.";
fDesc[7] = "record and play multiple tracks of audio and MIDI virtual instruments at the same time. You can the add effects like reverb, delay, guitar amp simulator, flanger or some third party effects.";
fDesc[8] = "the beat, and what's more interesting debuts a new hearing \"Now Playing,\" which aims to compensate for the lack of displays offering a slideshow elegant and full of visual effects with photos and information about the artist that we are listening.";
fDesc[9] = "sleek for a freeware. The media library is the main window of the program. Searching for files and browsing the library is very fast, unlike in Windows Media Player. The items found will be automatically grouped according to the genre, artist, and album.";
fDesc[10] = "as many audio files as you wish in MP3, WAV or WMA, arrange them in any order you like, add fade-ins and fade-outs, change their volume and pitch… and make your own original mixes with just a few clicks!";
fDesc[11] = "songs and albums with excellent audio quality, and all for free, as it is funded on advertising. In Spotify it is possible to listen to all sorts of music: from a rare song one might not expect to find, to the latest albums by popular bands and artists.";
fDesc[12] = "increasingly popular in the MP3 download market. Amazon is perhaps the most popular online retailer of the world, and now they are looking into getting a share of users from services like iTunes.";
fDesc[13] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[14] = ", etc.. It is commonly used as a virtual studio or as a collection of virtual instruments to use live or with other software sequencer.";
fDesc[15] = "Windows. It basically gives you the ability of creating and modifying ID3 tags right within Windows Explorer. It adds two new tabs to the properties dialog of the MP3 files. From there, you can add information about your MP3 songs.";
fDesc[16] = "networks shared files directly. Through its simple sidebar, you can access all information about the network, searching, downloading and uploading files.";
fDesc[17] = "with your pictures using your favorite music and even your own voice to create a narration. Microsoft Photo Story can create with a few clicks the most expressive and emotive sideshow to share with your family and friends, being the best way to keep your memories.";
fDesc[18] = "and video libraries and download online information about the artists. Besides, you can create photo slide-shows and edit your videos with special effects.";
fDesc[19] = "sound design. Easily combine loops, phrases and songs from diverse origins. Create music on the fly, without being bound to a fixed timeline. Improvise song arrangements, instantly drop samples on cue, interact with other performers, musicians or DJs. Record multi-track audio or real-time loops. Instantly change the tempo, melody, groove and sonic signature of your sounds at any time. Enter your samples and work 'from within' to create endless variations. Live 3 combines all of these possibilities in a simple and friendly environment that lets your creativity flow without limitations.";
fDesc[20] = "smart layout, plus a wide array of functions, this application has a powerful audio engine that provides an excellent listening experience. It has minimal system requirements, and works perfectly in all Windows OS, and the best of all, it is totally free.";
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 = '...';
}
}