var fDesc=new Array(); fDesc[0] = "A breakout is planned by the farm animals from the petty zoo! Enough is enough! They can no longer deal with kids touching them, poking them, prodding them, screaming at them. They must get out or die trying! It's your task to solve the puzzles on each level to allow the animals to roll to freedom! Use various objects in each level to grant freedom to each animal. Pumpkins, onions, bales of hay, carts, wheels, boxes, barrels etc can be used to help you free those animals!"; 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 = ''; } }