var fDesc=new Array(); fDesc[0] = "In this game there will be a figure and you will need to use some tiles to construct the figure. You need to be careful because not every tile are used, if you used a wrong tile, you might not be able to finish the figure. Use the mouse to drag the tiles to finish the figure. The faster you finish, 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 = ''; } }