var fDesc=new Array();
fDesc[1] = "few clicks, and then enjoy it with versatile streaming features. With Nero you are sure that your data is safe after an event of system crash or a damaged disc.";
fDesc[2] = ", provides more up-to-date content and more engaging multimedia than ever before. Whether you’re searching online or offline, it’s the trusted way for everyone in the family to easily find relevant and reliable information on just about any subject.";
fDesc[3] = "shop. You can sell flowers in bouquets which is twice profitable than selling single flowers. You can try this game for 60 minutes before you buy the licensed version. There are some discounts for GameServer Members.";
fDesc[4] = "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[5] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
fDesc[6] = "needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2008 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[7] = "accounting needs. This version is completely free, but big companies may need to buy the more full-featured Office Accounting 2007 Professional which includes more complex tools, such as multi currency support, which is an essential feature for businesses selling to international customers.";
fDesc[8] = ", 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[9] = "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[10] = "game develops in a farm and the activities undertaken by the character are all related to this farm environment. You will be picking apples from the trees, digging patches to sow chilies, harvesting chilies, selling the harvest in the market, and so on.";
fDesc[11] = "Alicia's customers by selling them the best outfit and assisting them as quickly as possible. Give the VIPs special treatment by choosing their outfit carefully, hire a help to clean the boutique and give discounts to angry customers.";
fDesc[12] = "sell. Then we go to a neighbourhood to sell them. We must try to remember what are the most demanded ice creams to be sure to get some of those for the next day. We can also spend some money on promotion so as to get more customers.";
fDesc[13] = "land in the countryside. Now she's planning to live there forever. To be able to buy the land she must make a profit growing plants and vegetables.";
fDesc[14] = "from start to finish.";
fDesc[15] = "will allow you to keep your house on the market when you want to sell it. It clearly shows effects of time on market on your net profit.";
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 = '...';
}
}