var fDesc=new Array();
fDesc[1] = ", Hexxagon, Pong, Snake, Space Invaders, Tetris, and Tic Tac Toe. Each game has its own rules and controls, identical to the original arcade games.";
fDesc[2] = "they add few new things to the games that are included. The games included in this collection are: Snakes & Ladder, Checkers, Chess, Backgammon, Reversi, Nine Men’s Morris, Ludo and Tic Tac Toe.";
fDesc[3] = "interface. Cool board game for everyone, everytime, everywhere. Just : Simple, Easy Tto Play, Fun.";
fDesc[4] = "Crosses. Aba Daba have a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[6] = "with positive and negative numbers. Supports 1-2 players with multiple difficulty levels. Intuitive interface and easy TicTacToe based rules.";
fDesc[7] = "intuitive user interface, very colorful and customizable, although with not very great graphics. The game offers four themes (flowers, animals, trees and geometric shapes) and three difficulty levels (easy, medium and hard).";
fDesc[8] = "allow you to play Tic-Tac-Toe online against your friends. See who can get the high score.";
fDesc[9] = "a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[10] = "surely know, Tic tac toe is a game that needs two players, one using an ‘X’ and the other a circle ‘O’, who will take turns to strategically place their pieces trying to form a straight line.";
fDesc[11] = "more complicated. The game features simple and unattractive graphics, but it can provide hours and hours of fun. The rules are almost the same as in TIC TAC TOE but the difference is that it requires five following crosses to succeed in any direction horizontal, vertical or oblique";
fDesc[12] = "cleared and the new double becomes the spinner. Play ends when someone is out of bones or when no one can play a bone.";
fDesc[13] = ", attention and concentration, and though it seems simple, winning it is a challenge. Enjoy Tic Tac Toe game from 3D Relax.";
fDesc[15] = "row. But now the game field is unbounded.";
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 = '...';
}
}