var fDesc=new Array();
fDesc[1] = "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[2] = "desired difficult level. The harder the level, the smaller the pieces. You can go from a very easy 4 pieces puzzle to a very hard 442 pieces puzzle.";
fDesc[3] = "lays on our shoulders. We must sort out a number of obstacles in our way to help them in the form of matching games and mini-games in order to gather enough points to pass to a higher level. We must arrange flowers bouquets whenever they are ordered.";
fDesc[5] = "start a new business, a flower shop at a beautiful island. Your goal is to help Meg expand her business to other locations. To do so, you have to help Meg reach a daily cash goal before the day is over, while keeping demanding customers satisfied.";
fDesc[6] = "clouds drift by and the meadow flowers bend in a gentle breeze. Download the full version of Living 3D Butterflies and watch your screen come alive with the beauty of spectacular 3D butterflies.";
fDesc[7] = "further growing flowers and plants. Buy upgrades for your farms and let Robin the dragon fight pests, harvest flowers and water the plants.";
fDesc[8] = "While playing the game you will face many way to order your pipes and learn how to take care of the supplies you own in order to harvest as many flowers as you possible can and earn money that can be use to improve your house and garden.";
fDesc[9] = "lotus flowers. In Lotus Deluxe you are helping Nirja pick the lotus flowers before they reach the whirlpool. Magnificent dragonflies will help you and lovely flowers will beguile you in this enchanting game.";
fDesc[10] = "clockwise or to the left. The objective of the game is matching flowers in bouquet of four flowers or more. When a matching is done, the matched flowers will disappear and we will get points.";
fDesc[11] = "a close up view of typical flowers found in a garden. The images are so realistic that you can almost smell the scent of the plants. You will be able to see all kinds of different bugs, and insects.";
fDesc[12] = "appearing on your screen. This screensaver is free! Download your own flowers garden!";
fDesc[13] = "sequences from a computer generated animation. In spite of that, the images and animations look pretty real and give your desktop a nature touch in the middle of so much technology. The screensaver provides a five-tabs configuration dialog to customize many aspects of it.";
fDesc[14] = "flowers in a beautiful setting. Gorgeous butterflies appear in front of you, and you listen to all kinds of noises coming from crickets and other animals.";
fDesc[15] = "sight with all kinds of colors. You will be able to see end enjoy very high quality images of some of the most gorgeous flowers in the world.";
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 = '...';
}
}