var fDesc=new Array();
fDesc[1] = "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[2] = "an important event. The tasks are divided in categories including web design, support, development, meetings, information and call.";
fDesc[3] = "family and you have to do that in time. The game has a Sim-like top down view and it looks good. But it gets repetitive very quickly, you might want to try it first.";
fDesc[4] = ", but stage after stage we must get enough money to buy new equipment and upgrades. In order to get money we must serve as many customers as we can by making and selling them different items. A previously specified amount of money must be reached to be able to get to the following stage.";
fDesc[5] = "work in a restaurant and keep costumers happy. You must be fast and considered with the people that arrive to your place, sit them down, take orders, serve food, clean and give them their bills to pay. You will enjoy a lot this experience and this great fun game.";
fDesc[6] = "modern enterprise of today. It allows you set up program designs, scheduling, time management, and others. The program also supports a wide range of functions including tasks allocation back and forth, milestones analysis, and estimated time for completion of a solution.";
fDesc[7] = "to keep the shelves of the supermarket stocked, so that the customer can get whatever they want without losing patience. All the customers have different personalities, food tastes and patience levels, and they include common people, movie stars and teenagers.";
fDesc[8] = "to follow the instructions you are given in each level and accomplish them as fast as you can. Your tasks include make up the girls, dress them up, and get her hair, nails and accessories done to finally go to the stage and be judged.";
fDesc[9] = "her father's workshop. You must manage the workshop while completing each level's objectives at the same time. The game has a good presentation, is fun and a good option for all the time-management fans.";
fDesc[10] = "the pets, cut their hair and much more. After just one day working at Pet Corp, our character is fired and she decides to create her own pet shop. As with any new business we must buy furniture, equipment and lots of things.";
fDesc[11] = ", then you should go for Uconomix SnapLogger. Uconomix SnapLogger is computer activity logging application which periodically takes screenshots of your computer. It is a very useful utility to keep track of daily activities especially dealing in time based projects.";
fDesc[12] = "First of all, we must have the work done by delivering the financial information to the employees. But we must be very careful, because if we assign too much work to the same employee he can be stressed out.";
fDesc[13] = "management program. It can do your lots of tedious and time consuming works without your interaction or attention. It is especially very useful for cyber café owners as it can automatically do all the management of your all computers.";
fDesc[14] = "carts and sell in different parts of the city. There are many factors that will affect the people's taste during the day. While the game has excellent presentation and features, the theme might not be very appealing.";
fDesc[15] = "for collecting time expenses, reporting and invoicing. Free support is available!";
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 = '...';
}
}