var fDesc=new Array();
fDesc[0] = "Phenomenon 32 is a free 2D exploration/platforming game with RPG elements.
Main features:
- Explore the strange world growing in the ruins of Earth.
- Follow the story of humanity’s last survivors and their desperate attempt to secure a future for themselves.
- Collect four different resources necessary for research and construction.
- Find or research new technologies that allow you to explore new areas or defend yourself better.";
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 = '';
}
}