var fDesc=new Array(); fDesc[0] = "Each time you enter a map with random trees, the trees are in a different position. This causes problems, as they can be positioned in the same place as a static object, such as a rock. You can place trees by hand, but do you really want to spend hours, even days, painstakingly placing each tree?

Using this program, you can quickly fill your map with trees! Trees that are in the same place every time. Trees that have a different rotation to the other trees, and trees
that can have a different scale to the other trees!"; 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 = ''; } }