var fDesc=new Array();
fDesc[0] = "Turbo Spirit - The arch-forefather of all motorcycle games - a true classic!
Turbo Spirit is a free arcade racing game. In Turbo Spirit the main goal is to achieve a good enough qualifying time to get to the next race track. In order to reach that goal you need to avoid running off the road or crashing into other bikers.";
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 = '';
}
}