var fDesc=new Array(); fDesc[0] = "This super fun game based off of the popular movie Kung-Fu Panda keep you entertained and having fun! Leap from one lantern to another without falling, and collect as many points as you can. But be careful! Careful footing is the key to soaring high! Click the mouse button to jump onto a lantern, move your mouse to jump onto the next lantern and leap your way as high as you can."; 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 = ''; } }