var fDesc=new Array(); fDesc[0] = "Scorpion Solitaire is a solitaire card game in which the goal is to build four columns down by suit from King to Ace. Cards do not have to be fully packed to move between the columns, so any card that is face up can be dragged onto a column that has a top card value one greater than the card being dragged, and is of the same suit."; 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 = ''; } }