var fDesc=new Array(); fDesc[0] = "There is fun for all the family in "Keep the Balance!" is all about keeping the equilibrium. Position objects on the scales and try to maintain the equilibrium for as long as possible. The objects, which move past on a conveyor belt, differ in weight; and of course, most of the time you get objects that are not much use. Sounds easy, but what do you do when the crocodile starts swallowing the other figures on the scale, or when the joker starts throwing objects that upset the equilibrium?"; 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 = ''; } }