var fDesc=new Array(); fDesc[0] = "This is a model rocketry simulation game for the PC. The users can always have a perfect sunny day to launch a model rocket as many times as they want. Change the appearance of the rocket by choosing from 10,000 possible combinations of nose cone, fins and colors. The user can select from 3 rocket sizes and a total of 45 rocket engines."; 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 = ''; } }