var fDesc=new Array(); fDesc[0] = "This is a new Ben 10 game. Ben10 must pass platform levels full of monsters and exotic obstacles. Ben10 can convert into 4 different creatures and take advantage of their special powers.

Many obstacles can not be passed otherwise. Use the arrow keys to run and jump. Press Space to attack or use special powers. Hold Z and press one of the arrow keys to convert into one of the creatures. You can only do it when the meter in the top left corner is full."; 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 = ''; } }