var fDesc=new Array();
fDesc[0] = "Feel the roar of the engine and adrenaline pumping while sitting in the cockpit of your car!
In Need For Drive you get to choose from 8 different vehicles.
In the great city and its surroundings, flog the machine under high boost and feel the
rush of speed!
Features:
- Realistic physics and advanced graphics effects
- A huge city and surroundings
- Different types of cars with unique cockpits
- High quality sound effects and much more!";
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 = '';
}
}