// JavaScript Document
		<!--
		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(incoming) {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					if (incoming) {
						var contentHeight = document.getElementById('content').offsetHeight;
					} else {
						var contentHeight = document.getElementById('content2').offsetHeight;
					}
					if (incoming) {
						var pictureHeight = document.getElementById('picture').offsetHeight;
					} else {
						var pictureHeight = 0;
					}
					var newsHeight = document.getElementById('news').offsetHeight;
					//alert("news:" + newsHeight + "pic:" + pictureHeight + "contenty:" + contentHeight);
					if (newsHeight > pictureHeight && newsHeight > contentHeight) {
						var touse = newsHeight + 55;
					} else if (pictureHeight > newsHeight && pictureHeight > contentHeight) {
						var touse = pictureHeight + 55;
					} else {
						var touse = contentHeight + 155;
					}
					var footerElement = document.getElementById('footer');
					var borderbox = document.getElementById('borderbox');
					var footerHeight  = footerElement.offsetHeight;
					var newsElement = document.getElementById('news');
					if (windowHeight - (touse + footerHeight) >= 10) {
						footerElement.style.visibility = 'visible';
						footerElement.style.position = 'absolute';
						footerElement.style.top = (windowHeight - footerHeight) + 'px';
						newsElement.style.height = ((windowHeight - footerHeight) - 255) + 'px';
						borderbox.style.height = (windowHeight - footerHeight + 33) + 'px';
					}
					else {
						footerElement.style.visibility = 'visible';
						footerElement.style.position = 'absolute';
						footerElement.style.top = (touse + footerHeight) + 'px';
						newsElement.style.height = ((touse + footerHeight) - 255) + 'px';
						borderbox.style.height = (touse + footerHeight + 33) + 'px';
						//alert("use:" + touse + "ft:" + footerHeight);
					}
					
				}
			}
		}
		//-->