var fDesc=new Array(); fDesc[0] = "Virtual Bingo and Random Number Generator is a Windows-based application that simulates the traditional bingo and number drawing equipment.

Using the software, you can run your bingo games and number drawings on a large projector or big-screen TV for many to enjoy.

The software animates "virtual" balls bouncing around the screen during the drawing. At the end of a predetermined elapsed time, the winning ball is displayed.

During a bingo drawing, the caller board, located at the top of the screen, is updated automatically to indicate which numbers have already been drawn. Dark grey numbers "not lit" indicate these numbers have not yet been drawn. Bright white numbers indicate numbers that have been drawn. The current winning number is shown in attention-getting yellow making it easier for the player to find."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }