		function getWindowHeight() {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
			
		return windowHeight;
		}
		
		function setFooter() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var col1 = (document.getElementById('column1').offsetHeight);
					var col2 = (document.getElementById('column2').offsetHeight);
					var col3 = (document.getElementById('column3').offsetHeight);
					//var ba = (document.getElementById('bodyarea').offsetHeight) + 110;
					
					//var bodyHeight = (document.getElementById('bodyareacontainer').offsetHeight) + 350;
					
					if(col1 > col2) {
						var contentHeight = col1;
					} else {
						var contentHeight = col2;
					}
					
					if(col3 > contentHeight) {
						contentHeight = col3;
					}
					
					//if(ba > contentHeight) {
					//	contentHeight = ba;
					//}
					
					var issues = document.getElementById('issues');
					issues.style.position = 'absolute';
					issues.style.top = (contentHeight+170)+'px';

					var lbar = document.getElementById('leftbar');
					lbar.style.height = (contentHeight+360)+'px';

					//Make sure all three columns are same height just to look nice
					
					var c1 = document.getElementById('column1');
					c1.style.height = (contentHeight)+'px';

					var c2 = document.getElementById('column2');
					c2.style.height = (contentHeight)+'px';
					
					var c3 = document.getElementById('column3');
					c3.style.height = (contentHeight)+'px';					
				}
			}
		}
		window.onload = function() {
			setFooter();
		}
		window.onresize = function() {
			setFooter();
		}
