var fDesc=new Array();
fDesc[1] = "amount of points possible in 20 spins. The game presents 3 modes: Classic, Mixed Matrix, and Patterns. You can change backgrounds, keep track of your scores, and control audio. Not available for Mac.";
fDesc[2] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
fDesc[3] = "while playing a game. Featuring good graphics and sounds, Saints & Sinners Bingo takes an adventure format in which you have to compete and travel on other venues what makes the game even more fun.";
fDesc[4] = "get Slingos (5 matches in a row). What you see in the screen is a combination of a slot machine and a bingo’s card. You can try this game for 60 minutes before you buy the licensed version.";
fDesc[5] = "BUDDIES to great destinations! Go to Las Vegas! Take a cruise! Go to church! The fun never ends!";
fDesc[6] = "found one. Bingo RM to MP3 Wave Converter enables you to convert RA, RM, and RMVB files into Mp3 and WAV files. This application also allows you to extract audio from Real Video files.";
fDesc[7] = "Established in 1999 Bingo Palace has become a favorite among online bingo players.";
fDesc[8] = "you started, including Sight Word Bingo, holiday-themed bingo, and much, much more! Be ready in minutes!";
fDesc[9] = "90 number bingo.";
fDesc[10] = "cards, but learning oriented bingos, so actually is intended to be used by teachers. Within a few steps you'll be creating a wide variety of fun learning games.";
fDesc[11] = "of bingo cards including cards for baby and bridal showers, sight words bingo cards for teaching reading, and more.";
fDesc[13] = "graphics, there are many promotions and various games to keep the action going.";
fDesc[14] = "superb sound and graphics, there are many promotions and various games to keep the action going.";
fDesc[15] = "television. Every facet of this bingo game was modernized so that you could play bingo like you've never played it before";
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 = '...';
}
}