var fDesc=new Array(); fDesc[0] = "Fertilizer Chooser helps to select the least costly combination of fertilizer sources to match the amounts of fertilizer nutrients specified in a fertilizer recommendation. Fertilizer Chooser is the final step in preparing a fertilizer program. It assumes that a target fertilizer recommendation for balanced plant nutrition has been obtained by other means such as soil testing or an existing general recommendation."; 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 = ''; } }