var fDesc=new Array(); fDesc[0] = "Truck Launch Maniac is an upgrade based game where the goal is to unlock achievements. You start off with a basic truck, with really good suspension, and you must drive it off a ramp into a landscape filled with bombs, signs, and coins which are placed randomly for each attempt. The bombs can be hit to increase your horizontal and vertical velocity, and the signs will slow you down."; 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 = ''; } }