var fDesc=new Array();
fDesc[0] = "Monster Minis Extreme Off-Road lays on the nitrous in a big way and gets some serious air off with retro racing that takes off-road in new directions.
Main Features:
- Extreme off-road racing speeds.
- 90 tracks - 3 skill levels.
- 18 unique track themes.
- Nitro glycerin injected hazards.
- Mouse steering controls standard.
- Optional wheel and joypad controls.
- Instant replay with user interface.
- Nitrous oxide injected power.
- Standard and limo style trucks.
- Speed shop custom add-ons.
- Player tunable vehicle settings.";
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 = '';
}
}