var fDesc=new Array();
fDesc[0] = "Physicube is a free block building game focused on physics and destruction, create complex structures and then destroy them and watch them fall.
Physicube features:
- Huge open world to build your creations.
- Build complex structures.
- Shoot cannon projectiles to destroy your creations, and then watch them as they tumble-down.
- Freeze time and see your destruction from a different perspective.";
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 = '';
}
}