var fDesc=new Array();
fDesc[0] = "You know how fun it is to smash balloons. Now you can smash them as many as you want.
For the fun to be even greater these balloons are funny, crazy balloons with eyes and mouths. They are hiding behind a window and your job is to throw a rock at them as soon as they peek out from behind.
Beware, those balloons do have eyes and if they spot your evil intentions they’ll disappear in a split of a second.";
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 = '';
}
}