var fDesc=new Array();
fDesc[0] = "Bob has crashed on a strange planet, lost a bunch of parts for his ship and above all, is late for work!!
Find the lost parts and rebuild your ship along the way to solve challenging, physics-based puzzles. You can build your ship any way you like in the ship builder – try to find the coolest ship-design for the puzzle at hand!
-Rebuild your ship any way You like.
-Find the lost parts and tools for Your ship – You’ll need them to solve puzzles!
-25 Chapters of solid level design and clever puzzles
-Many hours of replayability, with secrets, Medals and more!
-Now includes free VR Missions DLC";
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 = '';
}
}