var fDesc=new Array(); fDesc[0] = "Play Bingo with your Nick Jr. friends! Play three different types of Bingo: colors and shapes, colors and friends, or numbers and letters. Each time you play Bingo, you win tickets for virtual prizes! Watch out for surprise mini-games featuring your favorite Nick Jr. friends. Gameplay is offered in three difficulty levels: easy, medium, and hard. Be ready to shout BINGO!"; 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 = ''; } }