var fDesc=new Array();
fDesc[0] = "Trucker 2 lets you sit once again behind the wheel of a truck and race on American highways.
Player can choose order of his missions. There are nearly 60 of them.
You can chose one of 5 different trucks which can be upgraded and modified in your garage.
Road's surroundings are destructible, and the damage is visible on cars. Damage affects car handling.";
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 = '';
}
}