var fDesc=new Array();
fDesc[1] = "includes a new interface, new tools, more document viewing options, online meeting capabilities, support for more secure workflows, and a host of other new features to help you save time and money.";
fDesc[2] = "been here for a long time now. The game is just not what it used to be. So with Undercover, they tried to go back to its origins. The game now has cut-scenes and a plot. You are an undercover agent.";
fDesc[3] = "overview that helps you keep track of your expenses. Put savings targets and then perform a monthly analysis of your finances to see how much you're really saving.";
fDesc[4] = "plug-ins: Vinyl Restoration™, Noise Reduction, Clipped Peak Restoration™, and Click and Crackle Removal™ plug-ins. Save valuable time and money by applying the Noise Reduction processing power to salvage vintage vinyl recordings, and rescue problem tracks.";
fDesc[5] = "4 unique tanks of action-puzzle adventure!";
fDesc[6] = "works without starting the Keeper and lets the user to trace the arrival of new payments and messages. This useful utility checks if there is a new transfer, bill or a message.";
fDesc[7] = "accounts, manage their purses and maintain a list of correspondents, assigning additional contact data to their WebMoney IDs, such as names, email addresses and phone numbers.";
fDesc[8] = "your neighbors efficiently. The game includes 3 different modes: Speed, Memory, and Simon says. The three of them offers a different game play, although you're essentially doing the same thing: picking orders and dropping them on the corresponding restaurant.";
fDesc[9] = "searching for cargo to haul driving a fantastic truck. Your goal is to carry put deliveries, for which you are paid, and get as much money as possible to change your vehicle and buy a more comfortable and fast one to complete the rest of the tasks.";
fDesc[10] = "choosing your desired image and name. Then, you can choose to play some of the five games featured: Ride The Tide, Hold´Em Poker, 21 Blackjack, Video Poker or Slots.";
fDesc[11] = "gaming website, where we can register freely. We get points for playing and of course more points for winning. The points are counted in rupees (or dollars). But we don't actually get the money. We can select different items as reward based on the amount we have made (like a game CD ).";
fDesc[12] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[13] = "next stage, for example, in the first stage you have get eggs from hens. To get eggs hens must eat grass, and to get grass you have to water the ground. This is the kind of tasks that you have to carry out. In later stages you have to deal with pigs, cows, and many more...";
fDesc[14] = "The software is downloadable and has a chat feature included when playing against other players.";
fDesc[15] = "ready for the contest called Town of the year. The game is the second release of the sequel and includes great improvements and amazing new features.";
fDesc[16] = "wasted page. This is the page with just a URL, banner ad, legal disclaimer, etc. These wasted pages occur many times a day littering homes and offices around the world and wasting money, trees, and time.";
fDesc[17] = "contact with the customers. What you have to do is to locate the correct ingredients in the kitchen and click on them. This can be harder than it sounds because the kitchen you are working at is a real mess.";
fDesc[18] = "allow you to feel like one. You will be able to see banknotes everywhere around your screen. The notes are very realistic and you can almost \"smell the money\".";
fDesc[19] = "\"play money\") or create an account to play for real money. Getting started really is a piece of Cake (yes, we had to go there). Once the client is loaded, you'll be launched into the Game Lobby.";
fDesc[20] = "you record your income, expenses, bank loans and other cash items. The program is quite simple and can be used by all people, as it doesn't require previous accounting knowledge.";
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 = '...';
}
}