var fDesc=new Array();
fDesc[0] = "Causality is a puzzle game about manipulating time, altering the sequence of events and changing the outcome of each level.
Set across strange and alien landscapes, help a group of stranded astronauts find a route to safety. Travel through time, work with your past selves and solve paradoxes as you take on this uniquely challenging puzzler.
Each level represents a brief but hazardous moment in time. Levels are completed by guiding each astronaut to an exit that matches their color, within a limited time frame. When all astronauts reach an exit the level is complete.";
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 = '';
}
}