var fDesc=new Array();
fDesc[1] = "with according to their interest. The first option is Challenge; the player will have to complete the required poker hands displayed in the box of the screen before the cards run out. The player will receive an extra bonus for each card and time remaining.";
fDesc[3] = ", which helps to create the ultimate off road environment so that the gamer can take it online and race all challengers. The gamer can rip through the sand dunes in two new ATV models, launch off snow capped mountains with a redesigned monster truck.";
fDesc[4] = "with players from around the world. Each delivery returns us to the current NBA season, updating players, incorporating data, and so on.";
fDesc[6] = "shows a 3D keyboard image and uses key animation and re-sizable text fonts to prompt the typist.";
fDesc[9] = "your street player before joining a match. After each match, you gain experience points that will help improve your attributes. The game has a few problems but is free and the matches are very fun.";
fDesc[14] = "music. It integrates multiple game play modes including Freestyle Challenge and Tournament allowing the user to shoot for the highest score the highest level or can just play for fun.";
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 = '...';
}
}