var fDesc=new Array(); fDesc[0] = "Atos Poker is an application that simulates the casino gaming experience. The application delivers you a wide range of casino games, such as: Texas Hold'em, Omaha, Omaha HL, Stud, Stud HL, etc.

In Texas Hold'em the player receives 2 cards face down. After that the dealer place 5 cards, face down, till the river. The player will win if he has the biggest hand, by mixing his 2 cards and the 5 community cards."; 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 = ''; } }