var fDesc=new Array(); fDesc[0] = "The object of this game is to put all the cards to the foundation (the top 4 piles). The foundation piles must be built up from A to K with cards of the same suit. There are 7 tableau piles (the lower 7 piles). Initially, the cards are dealt here, some of the cards will be covered and some of the cards will be opened. Each time you can move a column of cards from a tableau pile. It is easy to install and easy to manipulate. It is a great program for those who love to play a cards game."; 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 = ''; } }