var fDesc=new Array();
fDesc[0] = "Calling all treasure hunters, style seekers, party penguins, foodies, social butterflies, rock stars and explorers. You and your friends will find the adventures of a lifetime on Club Penguin island.
Play as a penguin and do quests, learn secrets about the penguin island, join friends during the gameplay and solve stories together. Collect golden coins and stars, buy outfits from the in-game stores, outfits from all the Disney characters and universes, like Big Hero 6 and Frozen, Tangled and Zootopia.";
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 = '';
}
}