var fDesc=new Array();
fDesc[0] = "4X4 Evolution is a unique dynamic-simulation racer featuring customizable 4X4 vehicles on 16 rugged, natural off-road tracks, each with its own distinctive terrain, challenges, weather, music score, and difficulty level.
4x4 EVO is the first console game to feature cross-platform online play, in which Dreamcast, Macintosh and PC players could all race against each other simultaneously.
Gameplay features wild off-road racing in Career Mode, Online Mode, Map Editor, and Versus Mode, using 70 licensed vehicles and hundreds of player-upgraded real-world aftermarket parts manufacturers.
Players can also race across user-created maps downloaded to a hard drive or even a Dreamcast VMU. All platform gameplay experiences are of similar quality. DC, Windows, and Mac versions offer a vehicle-customization feature that allows players to race their own personalized vehicles online.";
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 = '';
}
}