var fDesc=new Array(); fDesc[0] = "Funny arcade game, where you will, driving a ball, go through all the rings and not crash into the robot and thorns. Ball can deflate and inflate. Big ball passes only through the large ring and floats in water, the little one goes through all the rings but drowns in the water."; 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 = ''; } }