var fDesc=new Array();
fDesc[1] = "free singing up. It gathers all communication, productivity and collaboration's tools in just one Web browser. Acrobat.com mainly aims at allowing people to collaborate in their e-documents.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "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[4] = ", 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[5] = "surround, dynamic boost, and Hyperbass. You can also change processing modes from a group of presets and listening environment between speakers and headphones.";
fDesc[6] = "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[7] = "Entertainment. In 2001, this game became one of the most popular on-line games through, inter alia, free servers that Blizzard offers, forming the network Battle.net.";
fDesc[8] = "a few words in it. On top of that, users can download a number of other free dictionaries from the website and use them in conjunction with the application.";
fDesc[9] = "that one can group them, move them around the screen all at the same time. If you find some on-screen group of icons annoying, you can double-click on it to hide it from your view. Another double click will restore the icons.";
fDesc[10] = "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[11] = "from PC to mobile phones all around the world. Instant and uninterrupted connectivity with your buddies allow you to chat with them as easily as it would be with an Instant Messaging Buddy.";
fDesc[12] = "other activities. It lets the user quickly find the stuff that helps them perform tasks faster like files, e-mails, contacts, music, presentations, etc.";
fDesc[13] = "will fire balls to lines of balls that will roll over reels towards a sea gate. If a fired ball hits a group of two or more balls of the same color, the whole group will disappear from the chain, and its place will be occupied by the balls rolling behind them.";
fDesc[14] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[15] = "undeliverable messages? Are you looking for a professional, easy-to-use all-in-one solution? Group Mail software for Windows may be the answer you’re looking for.";
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 = '...';
}
}