var fDesc=new Array();
fDesc[2] = ", sponsors, team members, and more ! Will you be able to lead your players to the top of the world hierarchy ?";
fDesc[4] = "anywhere in the world and chat with them online in real time. Although the software is free we have to register and pay to be able to use most of the services provided such as unlimited Online Chat, E-mail Message, send SMS to members, and Send a Kiss.";
fDesc[5] = "Singles, Doubles and mixed Doubles. There is a customization option available for the character before the world tour. There aren’t many options but you can still customize the character’s hair, skin color, clothing patterns, etc.";
fDesc[10] = "and tag teams, keeps track of champions as well as wins, losses, and draws on a configurable point scale. Outputs rankings in HTML...";
fDesc[14] = "new career by entering the Club Singles Championship. Submit your best season to JackLow's Online Top 50 World Rankings.";
fDesc[15] = "beauty together with excellentgame. Find some match balls in this screensaver.";
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 = '...';
}
}