var fDesc=new Array(); fDesc[1] = "personally liked most of all is the background music, it is very nice and relaxing. But, unfortunately, there is only one melody that sounds throug all the beach scenes."; fDesc[2] = "gives you the ability to control an entire civilization with a detail level that few games have. Its strong point is, above all, the resource management in all its breadth."; fDesc[3] = "in the ocean, where a beautiful lighthouse stands proudly against the waves, ready to guide ships to safety. It includes the ability to connect to the Internet and show you the latest news and weather reports extracted directly from different channels."; fDesc[4] = "detail for scenery along with a 1 meter resolution mesh which enables the user to see even the smallest dunes. The scenery has several missions included with varying difficult levels. There are animated sea gulls while flying with realistic cases of accidents if hit by one."; fDesc[5] = "screensaver will allow you to enjoy the peacefulness and beauty of fishing right next to a river. You will be able to sit down and experience the sensation of being immersed in a relaxing atmosphere where nobody will bother you."; fDesc[6] = "beach balls, tennis balls, and shotguns, but watch out for falling gulls and gull bombs."; 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 = '...'; } }