var fDesc=new Array(); fDesc[0] = "AblazeBall is an skillfull game with random generated levels. The game goal is to bring up two big fire balls into an ablaze space in the middle of each level. This could be done by pushing them there. Because your 'passengers' are not loaded at the beginning and therefore couldn't be moved you first have to give them fire by collecting sparks which you have to hand over to the big balls. This task is complicated by steady increasing water... because fire and water don´t like each other and therefore you should avoid the water as good as possible. But fortunately you have got the ability of terraforming, and so you have the possibility to build something like an 'marble path' on which you could move your protege in a save way. Further game objects will make your life more comfortable..."; 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 = ''; } }