var fDesc=new Array(); fDesc[0] = "System in which the player chooses plots of land to organize various locations within the game. By defeating enemies in battle, the player can collect experience point crystals that spill out.

The main character can equip a variety of weapons, armors, and accessories. Weapons grant the player the ability to perform abilities in combat."; 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 = ''; } }