var fDesc=new Array(); fDesc[0] = "Flower Planter is designed to give you a shortcut to planting flowers. All you have to do is go to the location you want to plant a flower, select the number of beans you want to use and the flower you want to plant, then press F10. It will not automatically run you around your estate, but it will do the clicking for you once you select a spot to plant a flower."; 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 = ''; } }