var fDesc=new Array();
fDesc[0] = "Piece together the beauty of our planet with 1001 Jigsaw Earth Chronicles 2. Study our incredible planet in the comfort of your own home. 1001 unique photos and a new jigsaw game to help you on your way. You will find animals from all corners of the Earth, the exotic botanical world, and the unseen depths of the ocean.";
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 = '';
}
}