var fDesc=new Array(); fDesc[1] = "computer. You can even choose your computer opponent“s ability. You can choose the ball you want to hit, and the program will help you showing lines with the path the ball will take when hit."; fDesc[2] = "the whole family. There are six different modalities of the game, and you can play with your friends or relatives on the same machine or online."; fDesc[3] = "you a wide variety of pool configurations and options. The \"Easy Pool Setup\" feature makes it easy to setup your pool."; 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 = '...'; } }