var fDesc=new Array(); fDesc[0] = "The game is begun by dealing forty-nine cards to the tableau, arranged as seven stacks of seven cards each. The first three stacks are deal with all cards face up; the fourth has three cards face down and four face up; the fifth has four cards face down and three face up; the sixth has five cards face down and two face up; and the seventh has six cards face down and one face up. The three remaining cards are set aside to form the stock."; 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 = ''; } }