var fDesc=new Array(); fDesc[0] = "Foxy Jumper 2 - the long awaited sequel to the popular arcade featuring a fox cub that couldn't stop jumping. The objective is still the same (get to the door), but it's not as easy as in the first game. Now the door is locked and you are to collect all treasures on the level before the key appears. Plus, there are more opponents now and they are much smarter. But don't worry, Foxy has nuts he can throw at his enemies."; 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 = ''; } }