var fDesc=new Array(); fDesc[0] = "Christmas Golf Solitaire is a version of the classic solitaire card game Golf with a festive Christmas theme. In Golf Solitaire, the player tries to remove all the cards in 7 columns. You can remove a card by adding it to the discard pile if the cards value is one more than or one less than the card on top of the discard pile. If there are no card on the top of the discard pile you can discard any card you like to start off the pile. When you get stuck you can deal a card from the deck on the top of the discard pile. In Golf Solitaire, suit does not matter, and you can wrap values from King to Ace and from Ace to King. Because of this, if there is an Ace on the top of the discard pile, you can place a King as the next top card. Also if there is a King on the top of the discard pile, you can place an Ace as your next card."; 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 = ''; } }