var fDesc=new Array(); fDesc[0] = "BaldHead Volleyball is a cheerful volleyball game with little bald men. The objective is to bounce a ball off a head and throw it through a grid so that the enemy on other party can’t return it. There are special variables, such as enemy frost, aura, increasing radius of the returned ball, and an increase in the size of a grid. It is possible to play together with a friend on a single keyboard, or with an intelligent bot."; 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 = ''; } }