var fDesc=new Array();
fDesc[1] = "religious and ethnic violence a joint force of western countries is coming down to the country to control the situation. The game can be played online with up to 150 players or you can play it on LAN with about 64 players.";
fDesc[2] = "includes sound both in the recordings and the MIDI recorded by Michael. Michael Blair’s personal instrument set-up included a mix of regular drums and odd bits and pieces like trashcans, bedroom furniture and rusty bicycle.";
fDesc[3] = "modifications to settings in their own music recording studio software programs. With this program, users can combine real instruments with advanced synthesis to create endless sound possibilities.";
fDesc[4] = "perfect name for their newly arrived little one, and also at creative writers who are looking for the perfect character name for their new fiction, etc.";
fDesc[5] = "a perpetual, theme based, multicultural, personal desktop calendar with the beauty of a wall calendar.";
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 = '...';
}
}