var fDesc=new Array();
fDesc[1] = "Real player is a free multimedia player,supports almost every audio and video file formats like,MP3,MPEG,MP4,CD,D VD VIDEOS and the QUICK TIME videos.Real player enables the user to buy and download music on more than 100 portable devices like Apple Ipod or an MP3 player.";
fDesc[2] = "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[3] = "This application's selection is limited to free streams that are widely available on the Internet. What this application does is gather a list of all those channels in a single location so that you can access them freely.";
fDesc[4] = "give you lots of entertainment. Wreck your brain with this game! It is the most powerful chess simulator available on a personal computer.";
fDesc[5] = "been developed specifically to fully meet the specialized needs of online broadcasters.";
fDesc[6] = ", you´ll have to pilot your top-secret helicopter loaded with cool gadgets around the alien menace and eliminate all alien bugs. Some of your enemies can shoot you. From time to time a big helicopter will help you paralyzing them with a ray.";
fDesc[7] = "files or audio cd's showing you a two decks interface. You can load different songs in each deck (using any of the supported formats), then mix the sounds and save the result in WAV, OGG or MP3 format.";
fDesc[8] = "computer. Control the ball and win the match!";
fDesc[9] = "sound card with a very high level of quality. Using this application, you will be able to record any external sound. You will be able to record your own voice by using a microphone or to record the sound of a guitar or any other instrument.";
fDesc[10] = "all in a very short amount of time and you will not lose any of your audio files' quality. This is a new version of the original Direct Wav Mp3 Splitter, and it includes a big number of new features.";
fDesc[11] = "cutter is very powerful because of its features like supporting MP3, WAV, WMA and OGG. Also its excellent performance in batch processing of files is very significant to the users. The end user interface adds more to its usability.";
fDesc[12] = "using your own images. The program is pretty customizable and allows you to select the background color, sound effects, interface language, among other things.";
fDesc[13] = "marbles of the same color to eliminate or burst them out. In order to do this the player must rotate a set of marbles and form groups of marbles of the same color. The game includes fifty action levels and 25 logical ones.";
fDesc[14] = "options.The game features a nice and intuitive skinnable user interface that can be used by virtually anyone. You can even customize the color of the boards and choose patterns. The game also plays sound effects and offers a built-in audio player.";
fDesc[15] = "you will be able to record TV programs or movies. If you like a video you are watching online, you can record it with this program.";
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 = '...';
}
}