var fDesc=new Array();
fDesc[1] = "Plot: This is a game for teenagers, and it has a comics aesthetics. You will find a group of four friends, Zack, Carrie, Jennifer and Andy, all teens, with different styles (the nerd, the cheerleader, the bro and the goth chick ).";
fDesc[2] = "network that began in 2006. The community was initiated and it´s maintained by teens, but It accepts anyone as a member. In order to use MoneyMaker you should, of course, be a member of MyYearBook.";
fDesc[3] = "different versions of popular solitaire card games with lots of customizable features. Among these it includes the possibility of changing the background color and texture, or using a picture instead with different landscapes to choose from, which is really cool.";
fDesc[4] = "This program is aimed for adults and for their families. You can calculate your budget for any period, and then keep an eye on your spendings. It can be expenses for food, clothes, entertainment, medical expenses, insurance, utilities, credit card, debts, vacations, car payments, education and so on.";
fDesc[5] = "except approved to be visited on the computer. Block questionable content from your kids eyes or use the software as a kiosk application.";
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 = '...';
}
}