var fDesc=new Array();
fDesc[0] = "Playing with Fire is a fun and free flash game that copies the world famous "Bomberman".
Playing with fire is a flash game that copies the gameplay of Bomberman and includes some different features and characters. It´s a good, fun, short game.
In this interesting online game, play with your friend or computer and blow up your opponents by standing alive till end to grab the victory.";
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 = '';
}
}