var fDesc=new Array(); fDesc[0] = "Primrose's gameplay is deceptively simple: You're given random pairs of colored tiles that you must place on a 7x7 grid. When you surround a group of one color with another color, the surrounded group clears, scoring points. The surrounding tiles flip to the color of the tiles that were cleared. When tiles flip color, chain reactions are possible. Larger groups and longer chain reactions are awarded more points."; 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 = ''; } }