	function centerbox() {
		document.getElementById("container").style.position = "relative";
		document.getElementById("container").style.height = "625px";
		document.getElementsByTagName("html")[0].style.marginBottom = "0";
		if(navigator.userAgent.indexOf("Mac") < 0 || navigator.userAgent.indexOf("MSIE") < 0) {
			var hangdown = parseInt((document.body.offsetHeight-625)/2)
			if (hangdown < 5) hangdown = 5;
			document.getElementById("container").style.marginTop = "0";
			document.getElementById("container").style.top = hangdown+"px";
		}
	}

