var fDesc=new Array();
fDesc[0] = "Crazy Car Championship Demo is a sample game which has been built on the graphic CipherEngine. By installing this game you can test various aspects of the game and you can enjoy a race with its features. The game is free to install on all windows platforms.
Races take place upon a series of flying islands and the game sees everything from steam-powered hovercrafts to quantum powered hot-rods competing in a no holds barred power-up-fest where frenetic gameplay and stunning scenery vie for the player's attention.";
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 = '';
}
}