var fDesc=new Array(); fDesc[0] = "In this classic Solitaire card game, you will be given a deck of 52 standard playing cards, and your task is to move all cards to 8 foundations at the top right corner by suit from A to K. The game starts with 7 tableau piles containing an ascending number of down-turned cards from left to right."; 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 = ''; } }