var fDesc=new Array();
fDesc[0] = "I Miss the Sunrise is a sci-fi strategy role playing game. It is the prequel to 2009's The Reconstruction and it features strategic battles, player-created weapons, and unique gameplay. I Miss the Sunrise is controlled entirely with the keyboard, using enter or the spacebar to make choices and the arrow keys to move.
Features:
- You can create your own pilot, give him name, choose gender, race, and customized personality.
- You can assemble your own weapons.
- Random exploration maps let you take part in battles and explorations any time you please.
- Customizable AI lets you determine just how ruthless the enemy can be.";
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 = '';
}
}