var fDesc=new Array();
fDesc[0] = "SNAP-Plus is a Microsoft Windows® based Nutrient Management Planning software program designed for the preparation of nutrient management plans in accordance with Wisconsin’s Nutrient Management Standard Code 590.
SNAP-Plus will calculate:
- Crop nutrient (N, P2O5, K2O) recommendations for all fields on a farm taking into account legume N and manure nutrient credits consistent with University of Wisconsin recommendations
- A RUSLE2-based soil loss assessment that will allow producers to determine whether fields that receive fertilizer or manure applications meet tolerable soil loss (T) requirements.
- A rotational Phosphorus Index value for all fields as required for using the P Index for phosphorus management.
- A rotational P balance for using soil test P as the criteria for phosphorus management.";
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 = '';
}
}