var fDesc=new Array(); fDesc[1] = "free demo for evaluation from the developer's website. Depending on our computer capacity we can choose between two downloadable demo versions, the small one or vanilla version, featuring the English & Scottish Leagues and the bigger version, which includes up to 12 Leagues."; fDesc[2] = "most obvious new feature. With more tricks and an overall more attacking mentality, with players encouraged to take people on. More licensed teams are included along with new boots, hairstyles and an improved Master League."; fDesc[3] = "details. Tracks teams, players and referee stats. Generates statistics tables, result prediction. Includes a Web site creation feature."; fDesc[4] = "sports supported. Fully customizable."; 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 = '...'; } }