var fDesc=new Array(); fDesc[0] = "Feedlot does the management of animals in a feedlot. The program is based around the individual animal or groups of animals. Three different groups are used: camp groups, sales groups and purchase groups. Weight, feeding, and veterinarian information is recorded on the animal records. The total cost per animal and purchase groups can be monitored. The program determines the profit made on animals that are sold. Feed rations and feeding costs can be determined per animal."; 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 = ''; } }