var fDesc=new Array(); fDesc[1] = "to this great saga. This time, the Prince of Persia, decides to go back in time, to kill a creature called Dahaka, which is like a black hole, eats everything in its way."; fDesc[2] = "developed by TimeGate Studios (instead of Monolith Productions developers of the original F.E.A.R.). Extraction Point requires the original game to be installed and played."; fDesc[3] = "paranormal storyline from the first game, with new twists. The game's atmosphere is so good, you heart WILL stop while playing it, this is a scary and fun game."; fDesc[4] = "we will be able to enjoy some of the incredible features of this expansion pack of one of the best action games. This title is arriving at your computer with new weapons, new scenarios and the continuation of the plot of the first game."; 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 = '...'; } }