var fDesc=new Array();
fDesc[0] = "The protagonist has a Rage Gauge, as displayed on the upper right of the screen.
- If you left click on the Rage Gauge area, you'll increase your Rage by 1, so long as you're not at the limit.
- If you hold down the left mouse button, you engage autoclick, thereby filling your Rage Gauge quickly.";
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 = '';
}
}