var fDesc=new Array(); fDesc[0] = "The object of the game is to match tiles. To make a match, you must select two matching tiles that are not blocked from the right or the left. When you make a match, the two tiles will be removed. Most matches are made by selecting tiles with the exact same image on them. However, Peace, Love, Courage, and Friendship tiles match each other, and any flower will match with any other flower. Remove all the tiles from the game board to win. If you have difficulties in finding a match, you can call a hint."; 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 = ''; } }