var fDesc=new Array();
fDesc[1] = "new restaurants. Unlimited, unrestricted gameplay, 50 new story mode levels, 6 new customers, take customer reservations, train new waiters for each restaurant.";
fDesc[2] = "download the free fully featured trial version from the developer's website, and evaluate it for a 15-day period or after processing 10 pictures, whichever comes first. It is available in English, Spanish, German, and French.";
fDesc[3] = "PowerPoint slide-show files to DVD video keeping transitions, sounds, and video clips; and create DVD menus to let you navigate your presentations with the remote control of your DVD player.";
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 = '...';
}
}