var fDesc=new Array();
fDesc[1] = "interface where all the options and actions are conveniently arranged. It's just as easy as choosing the time for an action to commence.";
fDesc[2] = "the background. Features real time mixing of messages and music, message date-time scheduling, automatic online internet updates and much more.";
fDesc[3] = "taking care of your virtual cash in the game is important for your winning chances to play the featured games. The game's theme is banking and dollars, and just to add to the excitement, a bank robber is also featured.";
fDesc[6] = "enter or space.";
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 = '...';
}
}