var fDesc=new Array(); fDesc[0] = "The Lobby is the central hub for the casino and the first thing you see after logging in. You may play games by selecting a game from the games list. The games list is organized into five game categories: Slots, i-Slots, Table Games, Video Poker and Specialty Games. Move your mouse over the category names to see the list of games in each category."; 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 = ''; } }