var fDesc=new Array(); fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation."; fDesc[2] = "Murder on the Orient Express is the new game of this series developed by The Adventure Company. This time the designers stressed the expressiveness of the characters, something which you certainly will appreciate."; fDesc[3] = "Hercule Poirot, a very clever detective who always solves all the mysterious deaths of the creations of Agatha Christie. As you realized this is a game based on a novel by Agatha Christie. The English famous writer of mystery novels."; fDesc[4] = "and Find adventure!"; 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 = '...'; } }