var fDesc=new Array(); fDesc[0] = "Varroa Pop simulates the growth of Varroa mite population in honey bee colonies. The program demonstrates how Varroa mites influence colony population growth throughout the year. You can change many factors through the menus in the model such as the initial population size, queen egg laying potential, and mite reproduction rates, so you can see how these factors influence both colony and mite population growth. This program can help you understand the interactions between the honey bee and mite populations and provide insights on how best to control Varroa in colonies."; 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 = ''; } }