var fDesc=new Array();
fDesc[0] = "Bonus Ball is a free puzzle game for players of all ages that encourages logical thinking. The aim of the game is to prevent the board from filling up by strategically aligning 5 objects of one color into a vertical, horizontal or a diagonal line which will instantly disappear. Game is easy to learn, adaptable to suit your skill level and is 100% violence-free! Bonus Ball doesn't require quick reactions and has numerous themes.
BonusBall is ideal for players who get interrupted frequently or who don't have the time to play for very long.";
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 = '';
}
}