var fDesc=new Array();
fDesc[0] = "This is an interesting third-person shooter where you can choose between three different warbots: Brutes, Punishers and Infernos. Use your mouse to move and shoot and try to make it from checkpoint to checkpoint.
With 3 differents Warbots , you must go to checkpoint to win. This game is playable with the mouse and the keyboard. very fun and easy , you can define your own warbot with more of 60 textures ! each warbots have a different fight method.with new path more long and difficult.";
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 = '';
}
}