var fDesc=new Array();
fDesc[1] = "alternate moves. The object of the game is to capture all the enemy pieces, or block them. The pieces move only over the dark squares, diagonally, one square at a time and always forward, for common pieces. The Kings can move backwards, too.";
fDesc[2] = "AdunanzA was born as a project to enhance the file sharing at Fastweb and Kadu Network. It´s a modification ot the original eMule client, with some internal tweaks to speed up the download process.";
fDesc[3] = ", Backgammon, Reversi, Kens, Renju and Kens. Master will be your guide and help you to master the secrets of playing. Happy journey!";
fDesc[4] = "or higher required.";
fDesc[5] = "resume,vacancies,labo r contracts,user profile support, feedback. The program can be expanded with additional modules.";
fDesc[6] = "the well known \"Same Game\" with many enhanced and new features. Groups of cells are dropped by clicking on one of the cells in the group.";
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 = '...';
}
}