var fDesc=new Array(); fDesc[0] = "In this game there will be a room full of objects. There will be a list of objects for you to find in the room. The faster you find out all the objects, the higher the score. If you cannot find a certain object you can click the hint button. Use the mouse to click at the objects."; 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 = ''; } }