var fDesc=new Array();
fDesc[1] = "better way. The basic rules are the same as in the original game, but it includes great new features that make this game absolutely enjoyable and addictive";
fDesc[2] = "much fun! There are three ways to play: solitaire, vs. the computer and with friends. You could also choose Triple Yahtzee, where you have three chances to improve your scores.";
fDesc[3] = "games: 5-dice game, 6-dice game, zarkle game, and team game. The rules for all of them are pretty simple: the players take turn rolling dice, then they should select at least one scoring dice: a 1 or a 5, three pairs, three of a kind, or a six-dice straight give you points.";
fDesc[4] = "rolls to get as many of the category number as you can. Needs The Lobby from http://www.tams11.com to play against others.";
fDesc[5] = "entertainment.";
fDesc[6] = "will give you emotions pretty much the same of those of playing dice in the real life. Specifically, the image of the dices is very realistic. It’s not so its behavior though. This new edition of Yatzy offers two different game modes: Yatzy and Maxi Yatzy.";
fDesc[7] = "Traditional Yahtzee is a 5 dice game but this game provides a 6 dice version to expand the scope of the game while retaining the original 5 dice game for the traditional Yahtzee game lovers.";
fDesc[8] = "You never know when this may come in need.";
fDesc[9] = "roll them for you. Plain and simple.";
fDesc[10] = "number that matches one of the dice. Once you fill in a row you earn points. Some dice will give you bonuseslike extra rolls or extra points";
fDesc[11] = "everyone can enjoy. It provides you with two game variations Single column and Four columns. You can play this interesting game alone or against another player. It also provides you with a range of features like Undo/Redo option, option to choose five or six dice game, etc.";
fDesc[12] = "attractive, with eye-catching colors, an intuitive interface and cool sound effects. Dicey is a nice game that all family members will enjoy.";
fDesc[13] = "sided dice. Ideal for any kind of board game or even Dungeons and Dragons.";
fDesc[14] = "the computer. Features: graphics, sound, scrollable help, user selectable options, and is played in pop-up window to allow multi-...";
fDesc[15] = "make the game enhance the basically fun game of dice. Yo'Dice allows you to change the backgrounds of the dice board. Nine backgr...";
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 = '...';
}
}