var fDesc=new Array(); fDesc[0] = "Car racing is a breathtaking and entertaining computer game in which you can have a command of all events happening on the racing track. Besides entertainment, the game will train your attentiveness and sense of motion in a two-dimensional perspective. This is a 2D game, easy to manage and play. The game is a racing track as seen from above. You are supposed to control racing cars moving on circular tracks. The overlook helps you to have a full picture of the racing trek so that you can steer the racing cars. The game is simple though addictive and gives lots of fun."; 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 = ''; } }