var fDesc=new Array();
fDesc[1] = "replays as .AVI files. You can play using your keyboard or joystick. The program has a database of 40 soccer leagues worldwide. You can play with any team from any country.";
fDesc[2] = "details. Tracks teams, players and referee stats. Generates statistics tables, result prediction. Includes a Web site creation feature.";
fDesc[3] = "forecasts for football, baseball, ice hockey, soccer, basketball, futsal, handball, volleyball, rugby and more.";
fDesc[4] = "position, dynamic speed and acceleration view, offside and forward lines, trajectories of the players und even more.";
fDesc[5] = ", Brazil and Argentina. It is feature-rich software that tracks statistics like game scores, won/lost record, kicks, goals, fouls, blocks, game scores, team standings etc. Soccer Stat Tracker also provides you with a ‘Top 10’ team list for specific betting game.";
fDesc[6] = "download it directly on the website), and then the application gives you many ranking and statistics on that championship.";
fDesc[7] = ", ... Differences betweens tables and statistics from a year to another. Tables history. Import/export of leagues from/to external software.";
fDesc[8] = "leagues. Stats are fully configurable and apply to all leagues, teams, players, referrees, predictions. Available in English, French and Spanish.";
fDesc[9] = "Graphical display of match results. Head to head stats, group vs group stats, bookmakers' odds and much more.";
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 = '...';
}
}