var fDesc=new Array();
fDesc[1] = "the galaxy by this. Is a game in which one can lengthen the line-up wherever you want whenever you begin a life of the universe is completely new and very large.";
fDesc[2] = "business (Small Medium or Large).";
fDesc[3] = "like taken out from a Sci-Fi movie and all the nice features of the game combine nicely to make it very entertaining.";
fDesc[4] = "numbers, business phone numbers, reverse search like \"whose phone number is this?\" or \"what businesses are at/on this address/street?\", search for toll-free phone numbers, maps, search for area codes, zip codes, weather conditions and forecast.";
fDesc[5] = "jungle to kick some frog butt and reclaim his dinner!";
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 = '...';
}
}