var fDesc=new Array();
fDesc[1] = "being the AC mode and the other being DC Mode (battery mode). Using this management software, you can choose among the many power profiles (Entertainment, Presentation, Word Processing, and Battery Life.) and set your laptop to last or extinguish the battery juices.";
fDesc[2] = "opened a juice store to change the tastes of the citizens, and try to give them the opportunity to drink different sorts of refreshments.";
fDesc[3] = "breath with his sensational graphics and his incredible Bonus of Welcome of ?1177.";
fDesc[4] = "energetic girl finds a job advertisement as a server in a juice bar and without second thoughts decides to call. Before even noticing it she’s working at the Golden Hearts. The whole idea of the game is to serve customers as soon as possible and make the most money you can.";
fDesc[5] = "The game features cool graphics with a nice music, and includes plenty of options and upgrades to spread your lemonade business all over New York or even have a monopoly of this branch in the city.";
fDesc[6] = "professional looking photo galleries within minutes of installing Thumbnailer! No HTML knowledge required!";
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 = '...';
}
}