var fDesc=new Array();
fDesc[0] = "Shin Megami Tensei: Persona 4, known in Japan as PERSONA 4 is a role-playing video game. This software will allow you to change and edit your character.
Main Features:
- Showing Personas in pictures
- Reverse Triangle/Normal Fusions Support
- Some help to decide what fusion combination to use for best result
- Complex Search options and filtering (Skills, Inheritance, Level...)
- Links to important Persona Ressources like FAQs and stuff";
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 = '';
}
}