var fDesc=new Array(); fDesc[0] = "Find a Word is a speech enabled word game for Microsoft Windows. When the game begins a ten letter word is picked from the database. You must use the letters from this word to make as many words as you can. Each word you make must be present in our dictionary and must have three letters or more. You have five minutes to find as many words as you can."; 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 = ''; } }