		<!--
		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 getWindowWidth() {
			var windowWidth = 0;
			if (typeof(window.innerWidth) == 'number') {
				windowWidth = window.innerWidth;
			}
			else {
				if (document.documentElement && document.documentElement.clientWidth) {
					windowWidth = document.documentElement.clientWidth;
				}
				else {
					if (document.body && document.body.clientWidth) {
						windowWidth = document.body.clientWidth;
					}
				}
			}
			return windowWidth;
		}
		
		function setFooter() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var contentHeight = (document.getElementById('bubble').offsetHeight);
					var footerElement = document.getElementById('footer');
					var footerHeight  = footerElement.offsetHeight;
					if (windowHeight - (contentHeight + footerHeight) >= 0) {
						footerElement.style.position = 'relative';
						footerElement.style.top = (windowHeight - (contentHeight + footerHeight)) + 'px';
					}
					else {
						footerElement.style.position = 'static';
					}
				}
			}
		}
		
		function centerSplash() {
			if (document.getElementById && (document.getElementById('splash')!=null)) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var headerHeight = document.getElementById('header').offsetHeight;
					var footerHeight = document.getElementById('footer').offsetHeight;
					var contentHeight = document.getElementById('bubble').offsetHeight;
					var splashElement = document.getElementById('splash');
					var splashHeight  = splashElement.offsetHeight;
					if (windowHeight - (contentHeight + footerHeight) > 0) {
						splashElement.style.position = 'relative';
						splashElement.style.top = (((windowHeight / 2) - (splashHeight / 2)) - headerHeight) + 'px';
					}
					else {
						splashElement.style.position = 'static';
					}
				}
			}
		}
		
		function setCols() {
			if (document.getElementById && ((document.getElementById('flexcol_left')!=null) && (document.getElementById('flexcol_right')!=null))) {
				var windowWidth = getWindowWidth();
				var leftColElement = document.getElementById('flexcol_left');
				var rightColElement = document.getElementById('flexcol_right');
				var divWidth = '45%';
				var marginWidth = '15px';	
				if (windowWidth < 950) {
					divWidth = '95%';
					marginWidth = '0px';
				}
					leftColElement.style.width = divWidth;
					rightColElement.style.width = divWidth;
					rightColElement.style.marginLeft = marginWidth;
			}
		}
		
		window.onload = function() {
			centerSplash();
			setCols();
			setFooter();
			//this handles alternating row colors for display tables.
			// tables must have ID of 'listing'
			if (document.getElementById && (document.getElementById('listing')!=null)) {
				stripe('listing', '#FFF', '#F3F1E6');
			}
		}
		window.onresize = function() {
			centerSplash();
			setCols();
			setFooter();
		}
		//-->