var fDesc=new Array();
fDesc[0] = "Make your way through challenging levels of block-breaking mayhem in this arcade-style action game. The object of Warkanoid is to destroy all the bricks on the screen by hitting them with a bouncing ball. Warkanoid features huge variety of power-ups, state-of-art music, nice sound effects, themed levels and lots of Internet-related functions. You won't be disappointed with this 21st-century adaptation.";
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 = '';
}
}