var fDesc=new Array(); fDesc[0] = "Video Poker is a card game played on slot machines all over the world. The objective is to assemble the best five-card poker hand from the cards that are dealt. Five cards are dealt initially, and you have the option to hold from 1 to 5 of these cards and discard the rest. The discarded cards are replaced by new cards from the deck. Depending on the resulting five-card combination, you are awarded amount of virtual money according to the table. If there is no combination, you lose your bet."; 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 = ''; } }