var fDesc=new Array();
fDesc[0] = "Flux Challenge is our award-winning, revolutionary 3D racing game. This unique racer revolves around a world of magnetic-levitation tunnels. Take control of one of these magilev ships, and become the international champion!
Main features:
-Immersive, blazing 3D graphics
-Fast paced, adrenaline-pumping racing action
-24 total races to play
-6 different ships to race with
-3 game modes for maximum replay value
-Original sound track by Jason Surguine
-Multiple award-winning title from the authors of Snails, Anthelion and the GameBox series";
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 = '';
}
}