var fDesc=new Array(); fDesc[0] = "CarCrash is a small, funny game for your free time between different tasks. Your task is to drive your car, so that you avoid the impact with other cars from the freeway. Collect points from the street, and try to beat up the records. Your game is over when you crash with another car.
CarCrash is easy to install, it has a small interface, so that it could easily fit into a corner of your screen."; 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 = ''; } }