var fDesc=new Array();
fDesc[0] = "Best free kids game one could think of. One single command, one single mouse click is enough to play this game. You are a little post fox flying on a hang glider and collecting post letters.
But you have to avoid many obstacles on that way that could bring you down from the sky. A cute little game that found many fans among adult players as well. This game is a great fun for those little pauses in between and a perfect game to play together with your child.";
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 = '';
}
}