var fDesc=new Array();
fDesc[0] = "Cubey is a small classic platformer. The Kingdom of Cubes is in danger.
The villain Kubster killed the king and seized power, and many innocent
people died at his hands. But there was a brave hero who dared to fight back.
Small block - Kuby goes on a dangerous journey.
He will avoid insidious traps and numerous tests, which prepared him to fight Kubster.
Reach the end and you have to take on the super villain Kubsterom!";
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 = '';
}
}