var fDesc=new Array();
fDesc[1] = "home use. This program protects you from viruses and spyware and includes several modules like Instant Messaging, Internet Mail, Network Shield, Outlook Exchange, P2P Shield, Standard Shield and Web Shield.";
fDesc[2] = "the game is to arrange the different types of candies into rows in order to crunch them away. Different candies will give you different points. Once you complete the required number of rows in time you will jump to the next level…";
fDesc[3] = "sit, scare, pounce, etc. You have to feed, clean, sleep, health, make happy, etc. You can reward your dino with a treat after each trick, buy clothes and dress up your dinos, zoom in, zoom out, tilt and rotate in real 3D.";
fDesc[4] = "surprise you with its unique capability to directly integrate with all your Windows components. This application offers you the simplest interface to optimize your digital images.";
fDesc[5] = "introduction showing the arrival of Dr. Humerus to the Heartland Hospital. Needless to say, you will be guiding Dr. Humerus in his quest to gain fame and fortune by healing patients and exploring the world.";
fDesc[6] = "for your Adobe Photoshop is a must have for professional photographers who want to treat their digital photos to make them sharper.";
fDesc[7] = "of Flash websites, HTML websites and Flash presentations.";
fDesc[8] = "Sell gems and jewelry to smiling customers, but watch out--keep them waiting too long and they'll start to grumble. Special tokens allow you to upgrade your shop with more jewelry and customer treats.";
fDesc[9] = "great variety of animals with different illnesses. As the animals come to the clinic, you must register them in the receptionist desk. Then, they wait in the waiting room until you assign them to an available bed in the examining room.";
fDesc[10] = "a fabulous Luxury Cruise and visit 12 exotic islands while collecting attractive keepsakes and quirky postcards. Or be footloose and fancy free, and Island Hop to any layout with no commitments.";
fDesc[11] = "either reduce or even completely remove noise from an image. The noise reduction or removal is done by sophisticated noise filtering algorithms, which also process the image quickly.";
fDesc[12] = "completely sure you will love this game. \"Zoo Vet Endangered Species\" is an amazing game where you will be an expert veterinarian who will have to deal with animals of endangered species, diagnose their problems and give them their respective treatments.";
fDesc[13] = "fans. This makeover of the classic Pacman game includes exciting features and game levels where you need to guide the Pacman around a maze eating all the dots. These dots are depicted in various office-related forms, like printers, mobiles, icons, pages, computers and other stuff.";
fDesc[14] = "arcade style puzzle game. With just a click of your mouse, you can swap candy places to match 3 similar candies in a row to clear your board of candies. The more candies you clear from your board, the more score points you get.";
fDesc[15] = "Backgammon offers a challenge to beginning and intermediate players alike with three skill levels of opponents.";
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 = '...';
}
}