var fDesc=new Array(); fDesc[0] = "Free Addictive Word Game is a free word game that allows the player to use random letters to create words. The player needs to drag a letter tile to one of the four vertical slots, juggle and weigh where to put the next random letter because it has to be multiple words at the same time. When a meaningful word has been constructed then the player will be rewarded with points and regain the space back."; 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 = ''; } }