var fDesc=new Array();
fDesc[1] = "your brave gladiators! And the Temple of all the Roman Gods will bring you luck! The fabulous Caesar?s land opens its gates in front of you.";
fDesc[2] = "systems, but now is in its full glory available for Windows. This is actually called a DVD to MPEG-4 converter, and is a great one. It supports several several output formats, such as MP4, MKV, and more.";
fDesc[3] = "the hit action-puzzler is here! Glory and adventure await in your quest to save Egypt from doom. Defeat the rebellious princes of Megiddo before they overthrow Pharaoh and plunge two lands into chaos!";
fDesc[4] = "series! Restore shabby hometown restaurants to their former glory with Flo and her grandma.Meet six new customers, take reservations, and dress-up and train waiters.";
fDesc[5] = "battle (Hannover) a medium battle (Cyrenaica), you will be able to view a slideshow about the management part of the game and a naval battle video.";
fDesc[6] = "In Adventure mode you´ll help Felicia Blue, an undercover secret agent posing as a professional UNO® player to track down spies, foil their evil plots and regain her former glory by winning the UNO® World Tournament.";
fDesc[7] = "than enjoy the comforts of modern life. And he gets to do plenty of both in his thrilling debut adventure! He also encounters a lot of what he'd rather do without: dangerous creatures, deadly obstacles and treacherous traps!You'll need every one of Gordon's nine lives as you help him run and jump his way to fortune and glory, explore exotic game worlds and overcome a cunning nemesis. You can also build your own dream island and play a variety of bonus stages as you take the role of Alex Gordon -- a cat with a hero's heart and adventure flowing through his veins!";
fDesc[8] = "game where new updates are released on a weekly or daily basis.";
fDesc[11] = "award-winning, best-selling Commandos series.";
fDesc[13] = "former glory by making sure the high-quality goods at each shop are shipped to its waiting customers in time. Pack your puzzle skills for a trip that's full of brain-bending fun in the colorful town of Profitville Deluxe.";
fDesc[14] = "Old Glory waving in the breeze while \"America the Beautiful\" can be heard as the background music.";
fDesc[15] = "astronauts spinning bananas in zero-gravity. Whether or not you like bananas, I hope you enjoy this screensaver!";
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 = '...';
}
}