var fDesc=new Array(); fDesc[0] = "Welcome to Virtual Walking the Pens, a 3D simulation of a pig barn! Come back each month for new problems to solve. What you do today will determine whether pigs stay sick, get sick, recover, or die. Like a real pig barn, everything you do makes a difference! The purpose of this tool is educational, not intended to replace any other training. Your swine veterinarian is the contact person for any decision or question with your herd. Read on to find out your in-barn assignment in this simulation."; 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 = ''; } }