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] = "includes common features in the programs of control of most parents, as the search for restrictions, blocking Web content filtering and Web monitoring reports of the activity.";
fDesc[3] = "clean a mess, first find it and then click on it with the mouse pointer. The second activity is to put the kids in bed before the parents come back home. To put a kid in bed click on it and then click on the bed.";
fDesc[4] = "need is to have two photos of the parents, upload them to BabyMaker program, and voila, a new realistic picture of your baby will appear in a snap!!!";
fDesc[5] = "to take care of them. Build the most amazing kindergarten in the city making kids happy in your place. Increase your popularity in the society and more parents will bring their babies to your place.";
fDesc[6] = "further growing flowers and plants. Buy upgrades for your farms and let Robin the dragon fight pests, harvest flowers and water the plants.";
fDesc[7] = "simple, you create a username and password for every user, and withing the admin's account you adjust the settings for each of them. You can ban certain websites, set time limits, block instant messengers or record conversations, block email accounts, and many, many more.";
fDesc[9] = "install so that non-technical parents can effectively protect their children.";
fDesc[10] = "while surfing the Internet. Parental Internet Filter installs a special network component that receives all network traffic BEFORE it reaches any program on your computer.";
fDesc[11] = "While originally designed for parents wanting to limit childrens' access, it also can be useful in the workplace.";
fDesc[12] = "perfect name for their newly arrived little one, and also at creative writers who are looking for the perfect character name for their new fiction, etc.";
fDesc[13] = "girls names. It includes the names, gender, origin, and meaning. Future parents can browse through the entire database and add the names they like most to the favorite folder.";
fDesc[14] = "comes pre-loaded with a dozen great web sites for children. Parents can add as many new web sites as they wish.";
fDesc[15] = "program features many sections including a prenatal diary, ultrasound pictures, first steps, first words, medical records and more.";
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 = '...';
}
}