var fDesc=new Array(); fDesc[0] = "Select a truck from the list and make it yours by adding the kind of wheels you need on the rocky monster, drive the monster truck on mountains and rocky roads. If you won't select the right truck and the right wheels your truck won't be able to climb mountains. Collect bonus stars on your way for more points. Use WASD or Arrow keys to drive."; 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 = ''; } }