var fDesc=new Array();
fDesc[0] = "Red Book Plus/MultiMate is a PC-based sire selection software program that gives users a tool to select bulls that meet their individual breeding goals, using information on over 180 different traits. Red Book Plus/MultiMate allows you to select from the almost 1,000 AI sires currently available in the U.S. The program is updated three times per year, after each genetic update.
There is a complete overview of each sire with screens showing all genetic values, changes in values from the last sire summary, linear traits, a 3-generation lineage pedigree, daughter averages and much more. Color graphs make the information easy to see and understand.";
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 = '';
}
}