var fDesc=new Array();
fDesc[0] = "Mad Truck is a free and easy to install truck game .
In Mad Truck your main goal is to reach the finish line in the time limit of 60 seconds , but there's a catch , you have to reach the finish line without crashing , if you crash you will start from the beginning of the circuit.
To control your Truck you need to use the arrow keys.";
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 = '';
}
}