var fDesc=new Array();
fDesc[0] = "Set inside a universe based on scientific theory, college student Sam is inexplicably teleported to the decaying Heywood-Bowman facility, where she stumbles upon the Catalyst, a device that can manipulate the laws of physics.
The Catalyst, one variant of a line of emergency and industrial tools, allows the user to temporarily walk on water, climb falling water, run faster, and stop objects in mid-air to create stepping stones.
When Sam learns that a malfunctioning experimental stardrive, deep inside the facility, is threatening to rip space-time apart, she must use the Catalyst to find a way to destroy the stardrive, and ultimately find a way back home.";
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 = '';
}
}