var fDesc=new Array();
fDesc[0] = "Toon Goggles is an on-demand entertainment application for kids. It lets you watch kid-safe cartoons and play engaging games. This application comes with parental controls, an intuitive user interface, and hundreds of HTML5-based games. This web-based service is constantly updated with new shows and games.
Toon Goggles is free to download. But, with a premium membership, you can get unlimited access to all its contents.";
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 = '';
}
}