var fDesc=new Array(); fDesc[0] = "On each stage you play one or pair of little dragons against enemies. These dragons can blow bubbles to catch enemies inside. After that you should jump on bubble with an enemy trapped inside and pop them! To increase your score you should pick up items: fruits,vegetables, diamonds, jewels etc.

You can also pick up some items to make your journey easy. This items are called "bonuses". They appear on stages after some events.

Some of them increase speed, range of bubbles' firing, others give you a chance to get more score points or extra lives. On some stages you can pop special bubbles that appear from holes in the top or/and bo"; 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 = ''; } }