var fDesc=new Array();
fDesc[1] = "fans of word games. Including the amazing “Boggle Blast” mode, Boggle Supreme has been packed with lots of great features such as a new computer player called Betty who will teach you the game and also challenge you!";
fDesc[2] = "quite a lot in the past few years. It has included features from virtually every other client out there. I like what they have done to the design, too. The main similarity you will find is its two-panel approach.";
fDesc[3] = "the with the action concentrated to holdem and the limit games in particular. At Peak time the room hosts approx. thousands of players online.";
fDesc[4] = "network connections made in your PC (local and from Internet), arranged in a per-application basis, and also you can limit the bandwidth usage for each one of them.";
fDesc[5] = "application working over net and provides information about its connections and transfer rates. Network Manager handles all the connected networks to your computer showing ip address, ip mask, adapter which connects your computer into network, and zone.";
fDesc[6] = "gathering, storing, and calculating the stats from any audio/video server. It is bundled with many features such as getting server type, server description, and current song, number of listeners, available listener slots, bit rate and server status.";
fDesc[7] = "of play: full-auto, semi-auto and odds calculator mode. Get it free today!";
fDesc[8] = "capture all the upcards from the game table and display detailed stats for all betting rounds instantly.";
fDesc[9] = ", Brazil and Argentina. It is feature-rich software that tracks statistics like game scores, won/lost record, kicks, goals, fouls, blocks, game scores, team standings etc. Soccer Stat Tracker also provides you with a ‘Top 10’ team list for specific betting game.";
fDesc[10] = "desktop. It is capable of retrieving real time weather information from more than 720 weather stations. The utility can display the stats as a minimalistic tray icon or as a more detailed desktop banner taking a bit of desktop real estate at the top of the screen.";
fDesc[11] = "requirements, built-in IP mapping, unique filtering capabilities and more. Fast, powerful and professional.";
fDesc[12] = "information includes file size, file time, MP version, encoding, frequency, CRC, Copyright and more.";
fDesc[13] = "Auditor a variety of analyses such as Benford, outlier, statistics, and other tools for both audit, analysis and fraud";
fDesc[15] = ", analysing your game and tracking your progress as a golfer.";
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 = '...';
}
}