var fDesc=new Array();
fDesc[0] = "Johnny Bravo Racing is a small racing game. All you have to do is to avoid incomming cars and trucks and watch out for the citizens on the road.
You mission is easy: throw newspaper and letters to houses and for this job you will gain points and bonuses.";
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 = '';
}
}