var fDesc=new Array();
fDesc[1] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles. This game has a few new modes with comparison to FIFA 08. The first one that you will notice is \"represent your country.\"";
fDesc[2] = "lines (squares, crosses or blocks) but also reveal pictures, proceeding by this to the next level.";
fDesc[3] = "250 colors and export patterns in bmp format. Customize your printings by selecting the size of grid, the type of color printout (squares, circles, small crosses), page margins. The color palette can be modified.";
fDesc[5] = "are typical of this season. You will be transported to a beautiful park, with a gentle stream that crosses it. The first thing you will notice is color. Everything around you has a different shade of yellow, red or brown.";
fDesc[7] = "Crosses. Aba Daba have a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[9] = "a modern unusual interface with different skins, attractive music, nice sounds and different skill levels.";
fDesc[10] = "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[11] = "row. But now the game field is unbounded.";
fDesc[12] = "the computer draws noughts. The goal of the game is to form a line of few crosses (3-9). Screenshot: Press [Download] button below to try free version.";
fDesc[13] = "will win the computer. These easy rules lead to an interesting and strategic game.";
fDesc[14] = "skills against the state of the art computer player. Choose the game difficulty you want out of five levels.";
fDesc[15] = "of currency: Formula 171322182723 is programmed for 19 crosses of currency:";
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 = '...';
}
}