var fDesc=new Array(); fDesc[0] = "Mystika is an incredible match 3 game with hidden objects parts in it. The magic world of Lumina needs a new hero to face Tenebria, the queen of the dark world. Your adventure will lead you to incredible places such as caves, castles, scary crypts, and more. During your trip you will collect powerful spells, rescue your friends the "Luminos" and banish monsters to make your way through this enchanted world. The journey of your life is about to begin..."; 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 = ''; } }