var fDesc=new Array(); fDesc[0] = "Little platformer to help pass the evening. The game has a boss, the system levels of the hero, a variety of levels, and several types of mobs. You have to play a girl that has the unusual ability to create a metamorphosis that turns lava into water, and ordinary stone into a green gem. Over time a special magic can be acquired that allows her to move between the world of shadows and reality. The game is made in the horror theme."; 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 = ''; } }