var fDesc=new Array();
fDesc[1] = "the same product that your seeking online. SmartShoppers send non-personal information to its servers while you are shopping online and opens a separate browser pane in your browser window to show you offers for that product you are searching for.";
fDesc[2] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
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] = "enough to keep them happy, make money and offer new products, continuously improve your restaurant to make it the best.";
fDesc[5] = "greatest selection of games and limits: Texas Hold'em, Omaha, 7 Card Stud. Now over 17 million players. Download PartyPoker now!";
fDesc[6] = "the three games is to collect as much money as we can, so that the money meter reaches the highest position and we move on to the next level. Each game features three levels of difficulties: easy, normal, and hard.";
fDesc[7] = "selling good and searching for fortune and fame. The key of the game is to buy low priced goods and then sell them high to accumulate money. You also can get money by collecting villainous pirates bounties.";
fDesc[8] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[9] = "houses which you rent and collect the money every month, and you also own some empty lots on which you can construct new houses. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[10] = "the game, we are in a Pool or Snooker room, with a game table playing against another user. The high quality 3D graphics are excellent, and we can go around the table in 360 degrees.";
fDesc[11] = "displays ads from our partners. It is easy to install and uninstall. It?s not spyware or malware and doesn?t come bundled with other software.";
fDesc[12] = ", 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[13] = "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[14] = "guide you on how to use your money in a wise way. It is a kind of accounting program which will allow you to register what you have to pay, when you have to pay it, what you have to get payed and when you have to get paid.";
fDesc[15] = ", you bet only for fun. You have to obtain a login name and password if you don´t have one. Membership is free, but you must declare you´re an adult.";
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 = '...';
}
}