var fDesc=new Array(); fDesc[1] = "action-packed 3d blast along roads filled with enemy agents - but also with innocent civilians that you should protect at all costs."; fDesc[2] = "challenges and 20 animals, mostly endangered species, which gives its name to the expansion. Your goal is to protect various endangered species, some of them as well known as the Iberian lynx."; fDesc[3] = "helicopters armada. Prepare for HARD battle! The game has sharp graphics and nice battle music. Enjoy!"; fDesc[4] = "puzzle game with three modes: Action, Adventure and Bonus Game. Solve the puzzles and learn all about the animals that live on the island, and collect lots of trophies."; fDesc[6] = "Windows’ operating systems that enables users to take a virtual driving course and test in simulated European country’s cities, motorways, and country sides"; 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 = '...'; } }