var fDesc=new Array(); fDesc[0] = "On the surface, the task is simple: Clear a board of colored runes by creating matches of three or more stones. As you progress, however, the puzzles will become harder and the obstacles more cunning. But don't give in to fear, as the dragon offers his help to those who persist. Only then, as he dazzles your eyes with his fiery displays, will you understand the path you are walking is one of enlightenment."; 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 = ''; } }