// JavaScript Document
<!-- 
function twoColumn() {//make sure that the nav bar column is at full height for the text column content
	(document.all) ? IE = 24 : IE = 0;
	var elc = document.getElementById('supportingText');
	var ell = document.getElementById('BNI_lower');
	elc.style.height = 'auto';
	//ell.style.height = 'auto';
	var c = elc.offsetHeight;
	var wH = window.screen.availHeight -400;
	if(c < wH){
		ell.style.height = 157 + 'px';
	}
	/*else{*/
		//ell.style.height = c -400 + 'px';
	//}
	//alert(c +" | "+ wH);
}
