var fDesc=new Array();
fDesc[1] = "and will captivate you while you are playing. The game consists in a bunch of words mixed up on the screen that you will have to find to get points.";
fDesc[2] = "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[3] = "invites the player to form words out of them. All the levels and supplied letters are good for creating known words. The game takes care of the truthfulness: there always are words that can be created using the displayed letters.";
fDesc[4] = "exciting colorful graphics that keeps players wanting more. It is a great tool for people who want to practice their English vocabulary. It is based on the American TV show with the same name. The player can choose the characters appearance, including hair color and style.";
fDesc[5] = ", and then in another one, to swap its positions and form words. You can play in Action (timed) or Puzzle (untimed) mode.";
fDesc[6] = "on the screen. You can join the letters regardless of the place where they are located. The most letters you use to get a word the most points you will get.";
fDesc[7] = "letters, and instead of creating pairs as in a regular Mah Jong game, here you will have to spell words with the available letters in the board.";
fDesc[8] = "clicking on them or typing them with the keyboard. You´ll get more points for longer words.Once you finish forming a word, press the \"Submit\" button or the Enter key. If the program recognizes the word as valid, the \"Submit\" button will change its color.";
fDesc[9] = "get to bet how well you can do at the beginning of each round. A window appears asking you to choose one of the three options The thing is that if you miss your bet the game is over, so try no to shoot too high.";
fDesc[10] = "All you need to do is match the letters that appear in the dam with words that you will load in the catapult so when you fire you will destroy the woods with those letters.";
fDesc[11] = "order to form words from letters that game provides you. Be fast and show your word abilities, type or click letter to form big and smart words.";
fDesc[12] = "The game is very funny and entertained and can be played by all the family. It is very easy to play, you control it all by using your mouse.";
fDesc[13] = "enjoyable, you will surely have a good time playing it. It requires quick reflexes and ability to spell words quickly. Word games fans will love it.";
fDesc[14] = "puzzle that you can reach by two ways, to form words from a spiral of letters or to select a letter that you guess is part of the phrase and puzzle.";
fDesc[15] = "English speakers since it can help you learn new words and improve spelling. The number of games to play is really impressive, as there is one per day starting from the year 1900, which guarantees endless fun.";
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 = '...';
}
}