var fDesc=new Array();
fDesc[0] = "What does a mining colony sorting robot dream of? His work of course, he's a dedicated fellow. But this dream has turned into a nightmare. The mineral cubes have come alive and are resorting themselves, switching types, multiplying and becoming just plain stubborn.
Who says independent games can't be pretentious! Watch out for the Super-Full-Color-Power-Up though, the answer to every robot's dream.
Features :
- 100 7.07236e-308ood old black and white!
- Exciting Tetris style 3D gameplay.
- 3 difficulty modes to keep you challenged.
- Unique Super-Full-Color-Power-Up!
- Full screen gameplay and crisp visual FX.";
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 = '';
}
}