var fDesc=new Array(); fDesc[2] = "acts as a camera we can use to view around at 360 degrees. We are Ash, a male trainer who can walk freely around the mini village, always followed by one of the Pokemon pets."; fDesc[6] = "time we have Shoddy Battle, a little game that lets you become a Pokemon master by building your own Pokemon team and challenging other people around the world."; fDesc[7] = "against evil minions to save princess. Nice game for younger players and older."; fDesc[10] = "Bros! Collect all crystals to get points and complete the level filled with traps and enemies."; fDesc[11] = ", buy weapons, powerups all you need to customize your gameplay."; fDesc[12] = "story and lots of texts to read, but the graphics are very simple, and a bit childish. In Aveyond you misteriously meet a dying woman who leads you to a quest to avoid that the evil forces take over the world."; fDesc[13] = "For Windows 95/98/Me."; fDesc[14] = "and even allows you to play the game in Standard mode or Enhanced Vegas mode. Think you've got what it takes to win at solitaire? Pokemons from all over the Universe might just have a surprise waiting for you."; 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 = '...'; } }