var fDesc=new Array(); fDesc[1] = "directly from the developer's website. There is a trial version we can evaluate free for sixty minutes. In this game, Alabama Smith, who is an archeological student in America, meets Dean Staples who asks him to go to Naples to investigate a mysterious artifact."; fDesc[2] = "of the Bible modern translation of the King James’s Bible. To retain the purity and stylistic beauty of the original King James, many scholars and church leaders who translated it to the modern Scripture,"; fDesc[3] = "puzzles in order to advance, and follow the story of two anthropology professors who are investigating mysterious documents and evidences of an ancient world."; 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 = '...'; } }