var fDesc=new Array();
fDesc[2] = "you will be a ble to enjoy a genre fusion of first-person shooter, fighter, and stealth adventure. In this thrilling adventure game you are going to play the role of the felon Riddick, who is one of ther most wanted men in the universe.";
fDesc[3] = "to beat everyone in these very fun bowling matches, in which instead of pins you will be hitting your elf friends. Become as crazy as the elf in this amazing bowling game.";
fDesc[4] = "Universal Games. The story of the Cuban drug lord by Al Pacino has found its sequel in this new game by Sierra and Radical. Scarface proposes to embody the peculiar Tony Montana in an alternate story where he would have not fallen victim of his own success.";
fDesc[5] = "captured the animals and seized the farm. Supercow heard about the situation through her network of informants, and dashed off to save the day.";
fDesc[6] = "prison. When he's out, he decides to kill the policeman that caught him. You are that policeman's brother, and you are searching for revenge. Armed with a car and a shotgun you decide to go to the small town in Mexico where your brother's killer and his gang were last seen.";
fDesc[7] = "we will be able to enjoy some of the incredible features of this expansion pack of one of the best action games. This title is arriving at your computer with new weapons, new scenarios and the continuation of the plot of the first game.";
fDesc[8] = "need some multitask handling skills in order to succeed in this game. You can try this game for 60 minutes before you buy the licensed version. If you like it, you can buy this game for only 19.95 dollars, right from the Oberon Media Game Center, on the Web";
fDesc[9] = "a name: Arnold. It is a cute dinosaur stranded on a small but beautiful island. Who knows how he managed to get a tape recorder, and now he spends his time dancing to the music, or just strolling around the island.";
fDesc[10] = "scenarios, over 35 cartoons, and over a hundred news from the town's newspaper. Feel the excitement of the Wild West!";
fDesc[11] = "formats (JPG, PNG, GIF), text formats (XML, RTF, TXT, MHT),and various script formats (PHP, JSP, ASP, PERL, PYTHON, etc.).";
fDesc[12] = "interface and excellent backgroup music. Playing CP is good way to relax after work.";
fDesc[13] = "invaders to pieces while protecting the last remaining humans, using upgradeable weapons and powerups.";
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 = '...';
}
}