var fDesc=new Array();
fDesc[1] = "firmware to enjoy new functionalities. The only restriction is that this software is only meant for recent devices of Series 40 or S60; all of these from any Internet enabled broadband connection.";
fDesc[2] = ", and system information in one intuitive, easy to use interface, or at least thats was Dell goal! Though it improve the benefit obtained by it predecessor DellSupport, it still need to improve some of it features.";
fDesc[3] = "what they want. You must cook and prepare everything they want so as to be paid. When you got money enough you'll be able to buy new machines that will increase the number of items in your menu. This will complicate the task but you'll be able to earn more money.";
fDesc[4] = "available on the websites and captures it. User can also capture MP3 from radio sites and can hear it whenever they want. It gives super quality of audio and video file exactly the same you hear or watch on the website.";
fDesc[5] = "employed for a TV show production. This fun and easy-to-play game turns you into a very busy waitress trying to keep the customers happy, and that could get more difficult than it sounds. Try this game for 60 minutes before you buy the licensed version.";
fDesc[6] = "time. Don´t forget to keep your customers happy so they will give you bigger tips. Drive all kind of cars from different kind of customers. Enjoy this great game as you work on a parking lot.";
fDesc[7] = ", and collect tips. You must help the restaurant owners to collect the money needed to pay their rents to Mr. Big, who wants them to fail because he wants his big restaurant to be the only one in the city.";
fDesc[8] = ", Challenge Mode, Relax Mode and Expert Story. The Story mode will tell you a story, where you receive by mail blueprints for a machine, you build it, and the result is a robot that makes burgers. You decide to run a burger shop.";
fDesc[9] = ", but be careful not to loose your quality of service or you will be loosing customers as well. Enjoy this great salon simulator game.";
fDesc[10] = "deal with several customers who arrive to take thier favourite cakes. The plot behind the game seems quite interesting at first sight: a recently graduated girl, looking for her first job, applies and gets a job as a cafe manager.";
fDesc[11] = "moviemaking features and faster uploading to Wal-Mart.com for online printing and photo sharing. With the Wal-Mart Digital Photo Manager, customers can create Web photo galleries and use basic editing functions.";
fDesc[12] = "People keep coming for their tables. Once you get them the table, they want to order. Then, they want the food fast, and finally they want the bill! Everything has to be made fast and right; otherwise the customers will be mad and won’t tip you well.";
fDesc[13] = "Sell gems and jewelry to smiling customers, but watch out--keep them waiting too long and they'll start to grumble. Special tokens allow you to upgrade your shop with more jewelry and customer treats.";
fDesc[14] = "clothing to them, get paid, and do some cleaning when there are no customers in the shop. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[15] = "matches on a board). You prepare the customers orders by collecting the required ingredients from a board. Every time you make a match, the ingredients involved are collected to prepare the order.";
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 = '...';
}
}