var fDesc=new Array();
fDesc[0] = "Puzzle kid is a puzzle game for children from 4 to 10 years of age. It was created to help children learn technology while having fun.
Developed some time ago, the game is free and available here as a thematic collection.There’s no hidden spyware or other tricks. It’s simply a present for your kid :)
Tell a friend
Make a donation
If you are happy with it, you can give your support by recommending the site to your friends or making a donation.";
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 = '';
}
}