var fDesc=new Array();
fDesc[0] = "The 3D educational game “Dino Adventure” is a wonderful journey in a fairytale realm. Once in this realm, which was some time ago the country of midget dinosaurs, the player is welcomed by strange silence. In fact, without realizing it, he/she is the main character and detective in the case of the disappearance of the pretty creatures.
The player follows the clues that Zino, the clever dinosaur left him/her in order to get to him. Only the main character can break the curse of the disappearance of dinosaurs and thus this story could have a happy ending.";
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 = '';
}
}