var fDesc=new Array();
fDesc[2] = "on your PC or print out. Best times roll of honour. Multiple skins and sound effects. Coaching aids.";
fDesc[3] = "your own baseball world. Includes online or solo play, real/fictional rosters, historical sims, drafts, trades, scouting, and more! Try the free demo!";
fDesc[5] = "played by the included MIDI player. You see immediately whether you are in tune, and if not in what way you need to fix your voice.";
fDesc[9] = "mother tongue. Program optimizes and individualizes educational process and increases the efficiency of work with texts in foreign languages.";
fDesc[12] = "SeasonPlanner has a wealth of reporting capabilities and builds a professionally designed web site with the click of a button.";
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 = '...';
}
}