var fDesc=new Array();
fDesc[0] = "Racing in Need for Speed World is the heartbeat of the game. It's where you take part in a Multiplayer Race, test yourself against the best racers in the world or compete against the AI in a Single-Player Race.
The Race events you can take part in are determined by your driver level. As you level up and progress through the game more challenging Races will appear.
There are two ways to join Race events:
If you look at the World map (press the M key to display) you'll see icons which detail the location of available Races. To join a Race, click an event and then select 'Teleport'. This will teleport you directly to the Race location. Alternatively, you can click 'Join Race', which brings up the Race window where you can select Single-Player or Multiplayer.";
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 = '';
}
}