var fDesc=new Array(); fDesc[0] = "Naruto Run is a game that contains the main character and two of his friends from the anime series. Your job is to run as long as you can without getting into the pit. The game has three characters: Sasuke, Sakura and Naruto, who are distinguished by different abilities. Naruto gets twice as many points. Sakura can jump higher, and Sasuke can jump two times."; 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 = ''; } }