var fDesc=new Array(); fDesc[0] = "Extreme Trucks is an exciting racing game. In the game, a heavy jumbo truck is under your control, whether wheel over the humpy road or make a rotate in the air to jump over a little hill, it is up to you to steer this giant smoothly. The UP ARROW KEY is allocated to accelerate the engine, and the LEFT and the RIGHT ARROW KEY is to rotate the truck and balance it in the air for a safe landing or a awesome tricks to earn more score. Have fun and enjoy the game."; 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 = ''; } }