var fDesc=new Array(); fDesc[1] = "great FPS action, with beautiful maps, great weapons and lots of accessories. If you are a special forces fanatic, or you are into the FPS scene, give this game a try."; fDesc[2] = "fulfill missions that will change the course of the war. With over 20 missions and very specific skills of each soldier, the amount of thinking you have to do in this game is high, and it's also very fun."; 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 = '...'; } }