var fDesc=new Array();
fDesc[1] = "the game is to build various figures out of objects of the same color. The deal is to make as big a score as you can!";
fDesc[2] = "the challenge?";
fDesc[3] = "Crosses. Aba Daba have a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[4] = "checkers, gomoku, renju, pente, connectris, othello, ataxx, barrier, stack4, clobber, entropy, Cats and Dogs, LOA, 3 Musketeers and more.";
fDesc[5] = ", Backgammon, Reversi, Kens, Renju and Kens. Master will be your guide and help you to master the secrets of playing. Happy journey!";
fDesc[6] = "(guessing a number), Hanoi Tower (moving bricks).";
fDesc[7] = "perfect pastime for you. Play with your computer or with your friends and enjoy multiple options, sound and animation effects.";
fDesc[8] = "position from file or manually. Demo game. Various colors.";
fDesc[9] = "a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[10] = "better your display system, the prettier it looks. Supports many languages.";
fDesc[11] = "them! THREE difficulty levels help you to choose an equal opponent.";
fDesc[12] = "display system, the prettier it looks. Supports many languages.";
fDesc[13] = "skills against the state of the art computer player. Choose the game difficulty you want out of five levels.";
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 = '...';
}
}