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] = "will get. Each letter will have a number on it that will indicate the number of points you will get by getting that word. This game is very funny and entertaining.";
fDesc[4] = ", he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words.";
fDesc[5] = "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[6] = "they are automatically removed from the board. In order to get to the next level you will have to make a certain number of matches.";
fDesc[7] = "wielding hand at two exciting modes: Speed and Strategy. Don't let the list of words reach the top in Speed mode. Take your time to plan each move in Strategy mode.";
fDesc[8] = "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[9] = "fans of word games. Including the amazing “Boggle Blast” mode, Boggle Supreme has been packed with lots of great features such as a new computer player called Betty who will teach you the game and also challenge you!";
fDesc[10] = "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[11] = "Scrabble is maybe the most famous words game ever made, and it's back in this new interactive edtition. In this game every word counts. No matter if your are a beginner or an expert, by using this game you have the chance to sharpen your Scrabble skills for sure.";
fDesc[12] = "land where words have yet to be invented. Test your word skills in 25 unique game types and watch your tower soar. Succeed, and your tower will reach heights never imagined.";
fDesc[13] = "in the form of a Word Guess in which users can fill in the blank spaces with English alphabets. The game interface has been designed to have the look and feel of a casino environment.";
fDesc[14] = "try to form a big word with a certain number of letters in your screen. Form your word and submit when you are ready.";
fDesc[15] = "solitaire word games. You will have to get letters together, getting words to get points and pass to the next levels. The game has got over fifty thousand words.";
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 = '...';
}
}