var fDesc=new Array();
fDesc[1] = "and DVDs. You can choose between several static and animated menus and preview everything before burning the disc. You can also burn standard DVD files (VIDEO_TS folders containing files. VOB. IFO and. BUP).";
fDesc[2] = "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[3] = "gain points. You will have to make a word from more than three or three letters. You can make a word by selecting letters horizontally, vertically or diagonally even - but the rule is not to leave a letter (you cannot skip a letter).";
fDesc[4] = "application allows you to crack the protection of both ZIP and RAR files created with most applications. It uses two methods to achieve this task: a brute-force approach and a dictionary-based approach.";
fDesc[5] = "cleaner can be that solution and the best part is: you don't have to extra pay for it. As you might guess from its name, this tool is free of charge";
fDesc[6] = "OK, at best. It is still in an experimental stage, so I will be easy on them. BitTornado attempts to be a fast BitTorrent client, thus the name. Or messy, maybe?";
fDesc[7] = "is actually the opposite. Sometimes, we forget the passwords we set for our password-protected RAR files, and there is one way to do it. Since there is not a way to simply deduct the password of a RAR file directly, this application uses two methods: brute-force...";
fDesc[8] = "graphics and sound effects, bonus items, teleports and offscreen tunnels.";
fDesc[9] = "by the famous Pat Sajak. The show is a questions&answers contest, related of course with words and letters. On the main menu you’ll see three podiums located on the TV studio. Each of the podiums represent a different game you can play.";
fDesc[10] = "mp3) and click a button. Chord Pickout will transcribe the music and write down the recognized chords automatically.";
fDesc[11] = "in the minimum number possible of attempts. You must place the colors you believe are the right ones in the 4/6 places, depending if you´re playing the hard or easy mode.";
fDesc[12] = "people who answer the same, the amount of points you get. If you get no points on an answer, or run out of time before typing the answer, or click the No Answer button, you get a strike. When you get 3 strikes, the game is over for you.";
fDesc[13] = "word in a given number of tries, depending on the word length. The general play of this game is very similar to that of the Hangman, but in Word Dummy, we became a Dummy if we loose.";
fDesc[14] = ", based on some clues that will be given to you. Every correct word will be rewarded by a letter from the password. You will have to guess five letters to gain access to the password. This must be done in a 2 minutes' time. You will compete against the computer.";
fDesc[15] = "reverse! That is to say, you are given the words, but what you need is to find the right place to make them fit in the crossword. Word Cross is really fun and addictive, and crossword fans will love it.";
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 = '...';
}
}