var fDesc=new Array();
fDesc[0] = "GENETOS is a vertical shooter with an "evolution" theme. In GENETOS, the levels represent different generations in the evolution of shmups.
In GENETOS,the weapons of your ship varies with your playing style. For example,if you move forward aggressively in the game, you'll get a short range and highly powerful blade. Or if you bump into a bullet many times, you'll acquire the ability to slow down the bullet's speed.";
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 = '';
}
}