var fDesc=new Array(); fDesc[0] = "Players proceed through each level, defeating enemies and collecting gems to power special weapons (in this game, the axe, boomerang, and holy water).Each stage is sectioned into chunks, and has a sub-boss battle in the middle, with the big boss battle at the end. Some items will increase the power of the characters' weapons. Some portions of the game split into different paths, depending on which character is chosen"; 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 = ''; } }