var fDesc=new Array();
fDesc[0] = "Sphera The Inner Journey has an incredible gameplay and a fantastic atmosphere.
Embark on a dangerous journey with Tess, a lonely young girl, as she is transported to a world that lies within her imagination in Sphera, a fantastic Hidden Object Adventure game!
Mocked mercilessly by her older brother for her eccentricity and the large glasses that sit upon her tiny head, Tess desperately wants to escape her lonely life.";
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 = '';
}
}