var fDesc=new Array();
fDesc[0] = "Play the sweet game that will have you seeing double -- or triple! Match similar tiles to clear them from the board before time runs out. Experience Vegas-style slots but with a delectable twist!
Blitz gives you a quick fix of frantic fun with 3 game variations that pump players up who are ready to see just how far their puzzle skills can stretch. Get your dose of Blitz with 6 ways to play ... use your wits or lose your wits in Bang on Blitz!";
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 = '';
}
}