var fDesc=new Array();
fDesc[0] = "It`s up to you to stop a mischievous gopher and his nefarious minions from destroying your beautiful garden in Plant This! Your goal is to stop them by using your green thumb and creating a labyrinth with flowers. These amazing flowers will defend your garden with magical powers. Enjoy challenging puzzle stages, several fun levels, and stop those nasty critters before it`s too late.
Fun Defense gameplay
Challenging puzzle stages
Vibrant artwork";
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 = '';
}
}