var fDesc=new Array();
fDesc[0] = "Offroad Madness is an interesting racing game! Choose your 4x4 among 4 vehicles, of small the 4x4x of leisures in large Hummer of competition. Select then the course. Once on the road, since a side view, use the arrows of the keyboard to lead your 4x4: High and Low to accelerate and slow down, Left and Right-hand side to rock the vehicle.
Reach the finishing line in a minimum of time to obtain the best score. Increase your score by collecting the no-claims bonus on the road. Manage well your balance and your speed for not you crasher.";
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 = '';
}
}