var fDesc=new Array();
fDesc[1] = "games without paying any subscription. QQ Games is an official plugin for Aol Instant Messenger and it offers a wide collection of online casual games that are totally multiplayer and free.";
fDesc[2] = "world, that are members of this online community. You will be able to play pool, snooker, chess, poker, darts and other games using a single interface.";
fDesc[3] = "the table by shooting at them with the balls of definite color and combining together 3 or more balls of one color.";
fDesc[4] = "modes are included among the nine games packed into one. The demo mode itself is much fun to watch and relax after a busy day.";
fDesc[5] = "Beginners will find it particularly useful to learn. The game is absolutely free and features an attractive graphic interface.";
fDesc[6] = "your player's disk to match them and to remove them from the board. Great fun and action in more than 60 levels.";
fDesc[7] = ", schedule game times, seed the teams, print or export tournament brackets and reports to HTML for publishing online.";
fDesc[8] = "such as chess & checkers against others around the world, and compete in tournaments.";
fDesc[9] = "gameplay and strategies. You can create your own levels which suite your taste and skills!";
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 = '...';
}
}