var fDesc=new Array(); fDesc[0] = "Loch Ness is a fast and easy solitaire game whose challenge is to score as many points as possible for each given hand. When you're really good, a single game takes about 60 seconds to play. Your goal is to empty the 7 stacks by building runs of cards going up or down in rank, regardless of suit. Jokers and free cards make the going somewhat easier, but if you're not careful you might get stuck!"; 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 = ''; } }