var fDesc=new Array(); fDesc[0] = "A gambling game that depends a lot on luck, Red Dog is not popular in casino play, but is often played at home just for fun- the stakes are meaningless. Bet weather the next card will be of the same suit and lower than the first five cards dealt. There is a minimum bet of one coin and a maximum bet equal to the pot. All loses are donated to the pot. The game starts with one-hundred betting token. The game is over when you run out of tokens."; 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 = ''; } }