var fDesc=new Array(); fDesc[0] = "Pandora’s Gearbox is puzzle game where you’re trying to get a ball though a machine to the finish area. You can’t see into the machine, so you have to guess what’s inside. You have several tools that help you in your task. You can move objects that are red directly. You also have a robot with built-in sonar that can explore the inside of the puzzle."; 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 = ''; } }