var fDesc=new Array(); fDesc[0] = "Columns Pyramid Solitaire is a modified version of Pyramid Solitaire, a classic pairing solitaire card game where the player is attempting to pair up cards that have a total value of 13 (examples include 10 and 3, Jack and 2, Queen and Ace). The player is trying to remove all the cards by creating these pairs. When a pair is created the cards are removed from the game. The player wins the game by removing all the cards from the three pyramids. If you know how to play Pyramid Solitaire, Giza plays by the same rules."; 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 = ''; } }