var fDesc=new Array();
fDesc[1] = "employed for a TV show production. This fun and easy-to-play game turns you into a very busy waitress trying to keep the customers happy, and that could get more difficult than it sounds. Try this game for 60 minutes before you buy the licensed version.";
fDesc[2] = "installing it, the program asks you your location, in order to display the matching weather information. You can select a location in a wide list of locations in Canada or the United States, or in main cities in the rest of the world.";
fDesc[3] = "features needed in order to create and design print projects; iron-ons, flash cards, photo albums, even skins for iPod players. With PrintMaster Gold 17.0 users are provided with over 17,500 pre-designed project templates, (7,500 more than in the PrintMaster Silver edition).";
fDesc[4] = "People keep coming for their tables. Once you get them the table, they want to order. Then, they want the food fast, and finally they want the bill! Everything has to be made fast and right; otherwise the customers will be mad and won’t tip you well.";
fDesc[6] = "professional photo calendars including your own pictures. The program is included in the pack Print Creations, and includes many free and purchasable calendars to choose from. Free calendars are really beautiful and for different tastes, and the purchasable are not very expensive.";
fDesc[7] = "Blasterball 2. From shamrocks on St. Patrick's Day to falling snowflakes in the winter, this edition provides seasonal bliss for every occasion. You'll be whisked through layers of mesmerizing patterns and 3D graphics.";
fDesc[8] = "wonderful forest all covered with snow. You will be able to see a very pretty village all decorated with Christmas ornaments. You will see several different scenes of the village and will even be invited to take a look at the inside of one of the houses.";
fDesc[9] = "mysterious snowy forest. Several wonderful landscapes. Analog and digital clock on the screen. Advanced settings.";
fDesc[10] = "that the developers have. This screensaver takes you away from your tiring and busy schedule on the computer to a relaxing and soothing environment in the snowy wonderland.";
fDesc[11] = ", probably near a mountain. You will arrive to a park, with a small plaza in the middle. Everything around you is white, covered with snow. Around the small plaza you can distinguish the shapes of the houses of the town.";
fDesc[12] = "streetlights. As you walk around the beautiful and picturesque little town, you will almost be able to see what is going on inside the houses and will even think you are smelling what is being cooked inside.";
fDesc[13] = "year's day and leap months for any year in the Chinese Calendar.";
fDesc[14] = "screensaver? Just have a look at Animated Screensaver \"Autumn\"! The autumn forest is beautiful. The leaves, which used to be green, change their ...";
fDesc[15] = "shapes against winter snowscape backgrounds, but don't chill out too much or the candle will burn out before you've cleared the grid.";
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 = '...';
}
}