var fDesc=new Array();
fDesc[0] = "Choose your hero and defend yourself. Try to defeat your enemy.
Pocket Fighter Nova is a free game developed by Tibaco International B.V . You control your characted with the keyboard using W,A,S,D to move . Use W to jump , A to move left , S to duck and D to move right , you shot with the J key and use bomb with K.";
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 = '';
}
}