var fDesc=new Array();
fDesc[0] = "You can select a default car in number 20 of 42, and play it with someone whose selected another default car with a different number.
You can play with someone who are using the default multiplayer car list, i.e.: unmodded.
A custom car work in the custom car slot.
You can play with other people using the same custom car in the same slot.
Any other combination of things.";
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 = '';
}
}