var fDesc=new Array();
fDesc[1] = "robberies. Law enforcement bodies are no longer able to curb well-armed gangs. A special task force squad has been called to interfere.";
fDesc[2] = "detachments of the terrorists. You are located in the trench and have weapons at your disposal. Fight for the world peace";
fDesc[3] = "seized by terrorist. Action takes place on your behalf.";
fDesc[4] = "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[5] = "The return to school this time it will be very different. Plot: The game continues the original story, the same characters in the first part just that now are in college.";
fDesc[6] = "terror, a group of courageous men and women has gathered to improve their skills to fight against the evil guild and bring justice back to people's lives. Experience the ancient Chinese Kungfu and magic, enjoy the endless beautiful scenery and mythical environment in which you can develop your own character and interact with other real-life and imaginary beings. This marvelous MMOG (Massively Multi-user Online Game) conquers the hearts of millions of players. Beautiful 2D artistic backgrounds and advanced 3D effects bring characters and environments to life. Sophisticated equipment system with exotic ancient weapon and customized motions designed for each weapon. A lot of treasured gems are waiting for you to explore, which will grant unimaginable power to its owner. Four character types to choose from: gallant Trojan, righteous Warrior, unsurpassable Archer, resourceful Taoist, which...";
fDesc[7] = "intense?--look no further: ...Bombstrike: \"The ultimate 3D helicopter action game.\"\" (The Independent Gaming Source)";
fDesc[8] = "people of Knightshirr city. Move adjacent items to form groups of three or more identical items to destroy them, search for the items over the stones to destroy all of those and clear each level of this game.";
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 = '...';
}
}