var fDesc=new Array(); fDesc[1] = "involved in an alternative reality in which Winston Churchill dies in 1931, eight years before the start of World War Two. Without the strong leadership of Churchill, Great Britain falls under the Nazi forces."; fDesc[2] = "levels and three game modes (including stunt mode) await you. There are 11 unique sea creatures hunting you down. You will meet Missile Fish, Robo Birds, TNT Turtles, Robo Sharks, and more!"; fDesc[3] = "term like your own name or those of your loved ones. Also, the program includes a Bible reader that allows you to study, read and search any word or verse in the English version of both Old and New Testaments."; 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 = '...'; } }