var fDesc=new Array();
fDesc[0] = "Travel the kingdom to meet new friends, find treasure, and encounter monsters. Choose your outfit, jobs, and classes to raise the skills that you need for success.
You could become a hero, find true love, discover the truth of your origins... or embrace villainy as an evil warlord. Dozens of endings depend on your choices. It's all up to you.
Features:
- Magical spells to collect
- Four dungeons to explore
- Make your own items with cooking and crafting
- Multiple marriage options
- Dozens of endings and secrets to unlock";
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 = '';
}
}