var fDesc=new Array(); fDesc[0] = "The Arcade Game Manager shows a list of available Games, show which ones are already on the connected NXT. It will let you pick ones to add. It will also let you remove Games, if you are running out of program space on the NXT. If you select a Game, it will show you game information and screenshot in the right side info panel. If downloading a Game fails for any reason, the Manager will roll back to the last state of the NXT."; 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 = ''; } }