var fDesc=new Array();
fDesc[0] = "Anthelion is our award-winning 3D Space Combat game for Windows Mobile Professional, Classic, and Pocket PC devices. As an ace fighter-pilot for a band of space pirates, your job is to eliminate alien scum and collect as much space booty as you can!
Anthelion features an incredible 3D graphics engine, fast-paced combat, a compelling story, and kicking aliens in the tentacle!";
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 = '';
}
}