var fDesc=new Array();
fDesc[0] = "Critical Mass is an action puzzle game that takes traditional match 3 and brings it into the world of 3D. We combine fast addictive gameplay with strategy to create a new and innovative play experience.
Main Features:
- Fast Paced Addictive Gameplay
- 4 Unique Game Modes
- Online Leader-boards & Ranking Systems
- Achievements & Skillpoint Rewards
- Exciting Colorful Art Style
- Great Music & Sound Effects
- Power Ups & Strategy
- Accessible to Everyone";
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 = '';
}
}