var fDesc=new Array(); fDesc[0] = "The game is very simple and easy to catch on to. The main character is an amiable bee that flies around and pollinates flowers. The number of flowers to pollinate in each level is indicated on the game's panel. After all flowers are pollinated, you have to fly back home. As the game progresses, the number of flowers increases. In addition, you will have to protect the plants from evil ants and grasshoppers. Do avoid flying geese and staying too close to the ground. This will drain some of your much needed energy. When flying around, try to collect as many stars as you can. These will get you extra points. One hundred points equal one life. Plus, there are other cool bonuses available later on in the game that will give you extra stones to throw or make you invincible."; 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 = ''; } }