var fDesc=new Array(); fDesc[0] = "Please, Don’t Touch Anything is a cryptic, brain-racking button-pushing simulation. Covering for a colleague who is taking a bathroom break, you find yourself in front of a mysterious panel which the only component is a red button. And since you’ve clearly been instructed not to touch anything, the only thing you want to do now is to push that damn button."; 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 = ''; } }