var fDesc=new Array();
fDesc[0] = "DinoPaint is a fun dinosaur coloring book that helps kids learn all about dinosaurs and other prehistoric creatures.
With 30 dinosaurs and other animals (in the registered version), this is a fun and educational way to occupy your kids.
Each dinosaur coloring page comes with a Dinosaur Fact File, where you can learn all about the dinosaur - when it lived, what it ate, how big it was, and much more!";
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 = '';
}
}