var fDesc=new Array(); fDesc[0] = "Celtic Mahjong is an interesting puzzle game. Your object of this game is to clear each level by matching tiles to remove them. When matching tiles, you must select two tiles that are not blocked from the right or the left. When you make a correct match the two tiles will be removed. Most matches are made by selecting tiles with the exact same image on them. However, any tiles that contain the same image but different colors, may also by matched. Attention, you can use the "Hint" button when you need some help locating match. Careful, using the hint doesn't always mean it's the best, and it will reduces 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 = ''; } }