var fDesc=new Array(); fDesc[0] = "Candy La Belle Lucie is a candy themed pile based solitaire card game similar to Cruel Solitaire or Shamrocks Solitaire. The player is dealt seventeen piles of three cards each, and one pile with a single card in it. The player builds down the piles by suit while trying to build up the four suit piles on the left. If you remove all the cards from a pile, you can not start that pile up again with any card. In any given game, the player is allowed to shuffle the cards still in play up to three times. La Belle Lucie is a challenging card game, so make sure you use your shuffles wisely."; 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 = ''; } }