var fDesc=new Array(); fDesc[0] = "It is an application that simulates the casino gaming experience. River Belle delivers a wide range of casino games, such as: Texas Holde'em, Baccarat, Roulette, Craps, Keno, Video Poker, Blackjack, etc.

A ‘Blackjack’ is achieved when a player is dealt an ace with either a ten or a face card and is unbeatable unless the dealer is also dealt a Blackjack in which case the game is a tie.
The dealer will continue to deal until his cards total 17 or more at which point he must stand."; 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 = ''; } }