var fDesc=new Array(); fDesc[0] = "In Snood Swap your goal is to make lines, horizontally or vertically, of three or more matching Snoods. Swap two adjacent Snoods, and if you make a line of three or more Snoods, they will be transported off the board and new Snoods will fall onto the board. The more matches you make, the higher your score. If you want more challenge try the Speed Game or Journey levels of Snood Swap."; 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 = ''; } }