var fDesc=new Array();
fDesc[1] = "(Rich Site Summary) feeds and useful shortcuts like people search, maps search, ICQ Chat rooms, ICQ Groups, ICQ Greetings, increase or decrease zoom.";
fDesc[2] = "related to Creative Hardware, Drivers and Application Software. The Program identifies the devices connected to the computer and generates information which helps the product developers.";
fDesc[3] = ", you´ll have to watch out for dangerous puzzle locks. The game has high resolution graphics. It can be played in four modes: Classic, Speed, Zen and Mind Bender, in Rainbow, Giant and Super Chuzzles. You´re awarded with trophies as you win.";
fDesc[4] = "PC. The data appears classified in three big groups, Software, Hardware and Network. Within each of them there are several sections that specify details about the processor, motherboard, printer, operating system, video drivers, libraries, etc.";
fDesc[5] = "When clicking on a group of 3 or more same-colored bricks, the whole group disappears, and the hole is filled first by the elements falling from above. If a column is cleared, the elements move to the center of the field.";
fDesc[6] = "little color squares to eliminate them and stop them from reaching the middle of the screen, if they touch the figure located there, it will explode and you will lose. You can eliminate the figures when there are groups of three or more squares of the same color together.";
fDesc[7] = "high scores, and a set of new backgrounds and game pieces. The player can choose between four game modes: Traditional, Puzzle, Relapse or Strategy.";
fDesc[8] = "positions of colored diamonds, in order to form groups of three or more same colored diamonds, in order to clear them out of the board. Sometimes you won´t be able to use a given diamond.";
fDesc[9] = "of same colors to collect them and defeat the evil black wizard, this game will give you a great challenge of time and fast abilities. A simple and easy game with a lot of good fun play.";
fDesc[10] = "Bejeweled series. The play is located in the era of the Aztec culture and the player should form groups of 3 or more balls of the same color around a trail, before the balls arrive at the Skull, the point at which they disappear.";
fDesc[11] = "Mine is basically a collapse/match 3 game with fine graphics and quite enjoyable gameplay, specially at higher levels.";
fDesc[12] = "points you need to choose with your mouse groups of elements of more than 3 of the same type and click to make them disappear. If you choose bigger groups you will get higher scores, if time runs out and you didn’t collect enough points, game will be over.";
fDesc[13] = "Thunderbird, Gmail, MSN Messenger, Hotmal, MSN Groups, AIM Mail, AOL Mail, Yahoo! Groups, etc. The icons are organized by categories: Miscellaneous, Happy, Sad, Love, Gold Sampler, Communication, Signatures, Famous Quotes, Love Quotes, Compliments, and Proverbs.";
fDesc[14] = "over the start menu completely. It provides facilities to the user to arrange or remove start menu items very easily. It also helps the user of this software to easily sort applications into required groups.";
fDesc[15] = "challenge you in a speed smart puzzle. The main objective of this game is to help animals and free them from their bubble jails. You must form groups of bubbles of the same color.";
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 = '...';
}
}