function centerbox() {
	if(navigator.userAgent.indexOf("Mac")<0 || navigator.userAgent.indexOf("MSIE")<0) {
		var hangdown = parseInt((document.body.offsetHeight-600)/2)
		if (hangdown < 25) hangdown = 25;
		document.getElementById("master").style.top = hangdown+"px";
	}
}