var fDesc=new Array();
fDesc[1] = "notification. You can manage all of your conversations in a single message window. Besides, you can send your friends an SMS from your PC with ICQ. Your friends can SMS back from their mobile directly to your ICQ message window.";
fDesc[2] = "of the game is to create matches of three in a row, by clicking on adjacent tiles to swap them. As you progress on the game, you’ll be releasing fishes. You can try this game for 60 minutes.";
fDesc[3] = "greatest selection of games and limits: Texas Hold'em, Omaha, 7 Card Stud. Now over 17 million players. Download PartyPoker now!";
fDesc[4] = "your hamster fall down in a wrong way, or you can break his ball and loose time. Reach the goal before the time is up and enjoy each new level of this game.";
fDesc[5] = "festivals of all types, including the celebration of anniversaries and other elegant or informal events. Of course we will have a lot of variety in the paraphernalia that supposes preparing a celebration, whether in the floral subject matter, the furniture, the buffet, games...";
fDesc[6] = "can download the free demo version and play it for 60 minutes. It features nice graphics and lots of different games and puzzles.";
fDesc[7] = "basically a time management game. What set it apart from other games is its good interface, playability and unique theme. Have your pizza prepared by farm animals!";
fDesc[8] = "popular games of a land-based casino, but comfortably from home, at any moment. Party Casino features thirty nine different games, including all the classic card and board games, as well as original slot machines and more.";
fDesc[9] = "are embedded within a web page so you can't download it & save it on your system unless you use a third party application. One such kind of utility that provides you with such kind of facility is Sothink SWF Catcher.";
fDesc[10] = "Driver is a single-client, multichannel sound driver that allows third-party audio programs that support the ASIO Driver standard to record and play back.";
fDesc[11] = "while the customers want to order some drinks, so you have to take their orders, prepare their drinks, and take the drinks to the customers before they get tired to wait. Every now and then the drinks machine gets empty, so you have to refill it.";
fDesc[12] = "fan or a beginner, there is something for everyone at Party Poker. You will find ring games, where players can compete with one another in single-table tournaments, and multi-table tournaments.";
fDesc[13] = "very accurate with D&D games. The dungeons are very well done and entertaining. However, this game might just appeal to D&D crowds, so try it first.";
fDesc[14] = "and friends and have some Adult Fun at the same time.";
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 = '...';
}
}