var fDesc=new Array(); fDesc[0] = "The main character of this game is Lex, the Bookworm. He loves to spell out words. His mission is to rescue Cassandra, the Oracle. To do this he must pass through different levels. Along the way, he will encounter emenies that will try to stop him. the way Lex defends himself from these enemies is by spelling out words. There is a box of letter tiles from which Lex has to form words. the more complex the word, the more energy it takes from his enemies. You can choose any letter in the box. there is no specific order in which the letter have to be chosen. The words formed must be at least three letters long. To put this newly spelled word into practice, you must form the desired word and then hit the attack button. But be careful, the enemies also attack Lex by taking his energy away. As you progress through the game, Lex’s enemies levels increase, and they are stronger. By being stronger, they also take more of Lex’s energy when they attack him. After completing each chapter, Lex is awarded special powers that will help him throughout his journey."; 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 = ''; } }