var fDesc=new Array();
fDesc[0] = "Popochi inmerses the player in a dream world, and sets him in the role of Popochi, a kind character who must protect its Charlotte's dreams from evil ghosts's stalking.
Popochi has 42 levels, 3 different modes, a lot of items, bosses, a progressive difficulty and surprises that will give the player many hours of fun with constant challenges.";
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 = '';
}
}