<!--
/* Sets the min-height of content div depending on nav div height */
function setHeight()
{
var contentHeight = document.getElementById('env2001').offsetHeight;
document.getElementById('env3001').style.minHeight=contentHeight+'px';
}
-->
