var fDesc=new Array();
fDesc[0] = "Gunbot is a futuristic 3D sport game inspired by the Ice Hockey in first-person view, and a Doom-like game with weapons to snipe the other players.
Gunbot also includes concepts of arcade games and a bit of management games to lead the team in first division and winning the World Cup.";
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 = '';
}
}