var fDesc=new Array();
fDesc[0] = "In Dino Shift, Dino, a funny little dinosaur, hatches out of his egg and goes right off exploring a mysterious, uncharted world of fantasies. Amazing adventures are not long in coming.
On his way he meets a myriad of unfamiliar little creatures, unanticipated barriers and tricky obstacles.
To overcome them, Dino needs to change his skin color and sharpen his ingenuity.";
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 = '';
}
}