function setTall() {


	if (document.getElementById) {
	   var footerHeight = 125;
		// the divs array contains references to each column's div element.  
		// Replace 'center' 'right' and 'left' with your own.  
		// Or remove the last one entirely if you've got 2 columns.  Or add another if you've got 4!
		
		// Let's determine the maximum height out of all columns specified
		var maxHeight = 0;
		var headHeight = 245
		 maxHeight = document.getElementById('content_holder').offsetHeight+headHeight;
		 
		var siteCenter = document.getElementById('siteCenter');
		var footer = document.getElementById('footer');
		
		
		var theWidth, theHeight;
		// Window dimensions: 
		if (window.innerWidth) {
		theWidth=window.innerWidth;
		}
		else if (document.documentElement && document.documentElement.clientWidth) {
		theWidth=document.documentElement.clientWidth;
		}
		else if (document.body) {
		theWidth=document.body.clientWidth;
		}
		if (window.innerHeight) {
		theHeight=window.innerHeight;
		}
		else if (document.documentElement && document.documentElement.clientHeight) {
		theHeight=document.documentElement.clientHeight;
		}
		else if (document.body) {
		theHeight=document.body.clientHeight;
		}
		
		
		if ((theHeight + footerHeight) > (maxHeight)){
		
			if((theHeight - maxHeight < footerHeight)){
			    theHeight = theHeight - (theHeight - maxHeight)+footerHeight;
				siteCenter.style.height=theHeight +'px';
			}else{
			theHeight = theHeight;
			
			siteCenter.style.height=theHeight +'px';
			}
			
		}else {
		theHeight = maxHeight + footerHeight ;
		siteCenter.style.height=theHeight +'px';
		
		}
		
		
	}

}

window.onload = setTall; 
window.onresize = setTall; 