var fDesc=new Array();
fDesc[1] = "in the world of lineage. It is a classic MMORPG with a lot of elements very straight forward. Although it may be hard for casual gamers, committed gamers will enjoy this good time.";
fDesc[2] = "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[5] = "rallying game. The Xtreme version also brings road going cars and some other off road vehicles. With over 40 tracks available, the repetitive value of the game is huge. This is a great addition to any racing fan collection.";
fDesc[6] = "soccer game that tries to deliver the most realistic graphics and playability to both the PC and next-gen consoles.The first one that you will notice is \"represent your country,\" which allows you to pick a country and start a sort of identity online.";
fDesc[7] = "physics are superb, it features complete and total realism. This game is for hardcore racers that want to sharpen their skills and race just as if it was real life. However, other gamers may find the learning curve a bit steep.";
fDesc[8] = "in turns, in a browser window, while the real time combat is played in a gaming window. It has a steep learning curve but hardcore strategists will love it.";
fDesc[9] = "getting splattered by your ball and laser cannons dishing out hardcore destruction.";
fDesc[10] = "buy equipment and various guns that will help on your quest. The game is crafted using a powerful 3d engine and offers an absorbing hardcore gameplay.";
fDesc[11] = "rises again. This new arcade game is surprisingly fun. If it has an Achilles' heel, it's that the gameplay becomes repetitive.";
fDesc[12] = "buttons by editing the config. file with your favorite text editor.";
fDesc[13] = "friends in 30 levels filled with dangerous dinosaurs and more than a hundred goals to complete. For casual and hardcore players.";
fDesc[14] = ", Championship Euchre Pro offers a fun and exciting gaming experience for casual and hardcore fans alike. Now you can challenge our playful computer champions, engage your friends over a local network, or compete in our free global Internet GameSpy lobby. Play at your desk or on-the-go using GPRS, Bluetooth (r) and other wireless technologies. If you are new to the game, take advantage of the interactive tutorial to show you how to play. Other practice features such as hint, undo, and replay will help build your confidence. If you are a seasoned pro, try to corner one of our eight animated opponents who adapt to your play style and use advanced strategies with a humorous twist. Detailed statistics will help you track your success and optimize your strategy. You are in control - play the most popular variations including Partners, Cutthroat, Bid Euchre, British, and Call for Best your...";
fDesc[15] = "motorcycle drivers out there. It will display a lot of high quality photographs of motorcycles of almost every kind available. You will be able to see Harleys, Hondas, Modified choppers, and more.";
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 = '...';
}
}