var fDesc=new Array(); fDesc[0] = "This is a game of skill and of course, a little luck. The object is to clear the entire board of all shapes. But how you clear the board makes all the difference in the world. You see, the more shapes you can get off the board in a single move, the higher your score!"; 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 = ''; } }