var fDesc=new Array();
fDesc[1] = "browser, to read documents and emails offline. At the begining Gears only implemented Google Reader, but now Gmail is in progress and it is expected that in the near future it will be extended to other applications such as Google Docs or Google Calendar.";
fDesc[2] = "password to prevent unauthorized access. The user interface is as easy as 123. Just create a new locker, set your password and drag any file or folder to encrypt. Multiple users can use the program by creating multiple lockers on the same computer.";
fDesc[3] = "looking for. Windows Desktop Search helps users quickly find and retrieve e-mail messages, documents, and many other file types located on their PC and corporate network. Windows Desktop Search provides a familiar, integrated, and convenient search experience for Windows users. Search index does not create privacy issues or device performance concerns. Windows Desktop Search integrates with other Microsoft Search technologies.";
fDesc[4] = "enables co-workers, customers and prospects to view any application running on your PC in real time. Plus, All You Can Meet(TM) pricing means you get unlimited online meetings for one flat rate, so you can meet as often and for as long as you want, with no overage charges, ever. Features include: Desktop Sharing, Share Keyboard and Mouse Control, Change Presenters, Chat, Drawing Tools, Meeting Recording and Playback, Multiple Monitor Support, Microsoft(R) Outlook(R) and IBM(R) Lotus Notes(R) Integration, Instant-Messaging Integration and a Free Voice Conferencing Service. Security measures include: industry-standard SSL and government-standard end-to-end 128-bit AES encryption, user authentication using strong passwords, specific application sharing and inactivity time-out.";
fDesc[5] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[6] = "previous editions there is no much new to tell because the game is pretty much the same, only changes its location. For those who haven’t played the previous editions of this game, let’s say that this is a strategy game related to construction and real estate business.";
fDesc[7] = "to streamline daily work and to increase competitive edge with intelligent approach to organization of information flow in business processes.";
fDesc[8] = "manage to become the best Dunder Mifflin Paper Company salesperson while you maneuver through the office, playing pranks on your rivals to slow them down, earning points by helping out your co-workers, and avoiding to get distracted by the office visitors.";
fDesc[9] = "safari park. The Game was split into three different zones, the nature park, the tourist grounds and the African village. . The principal objective is for your park to get five stars. To achieve this the player has to make sure each zone is run properly.";
fDesc[10] = "Interior Designer. Your job in this game is to design kitchens and bathrooms and also manage the builders to finish the construction on time. First, your assistant will provide details about the owner's expectations and needs, or a brief personality description.";
fDesc[11] = "attractions or food stores to entertain and keep your costumers happy. The game has very good graphics and action. By the time you build more attractions more costumers will come visit the place.";
fDesc[12] = "earn money. Each day of work you have to earn a certain amount of money to pass to the next day. You have to serve customers as soon as possible, otherwise they will leave, and you will lose some money.";
fDesc[13] = "together with other people who are physically far from you, even in different countries, through the Internet. Gogrok lets you share programs, desktop or files with other co-workers, while allowing you to speak with them using its voice capabilities.";
fDesc[14] = "it´s running out of resources. The people have chosen you as their leader to take them to a new home. You will have to find a place for your new home, establish buildings and train workers.";
fDesc[15] = "to internet). What makes it different is that the server application (MICA Server) is also available for free downlo...";
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 = '...';
}
}