window.nudgebackup=window.onload;
window.onload=function() {
	if (window.nudgebackup) window.nudgebackup();
	setInterval(
		function() {
			document.getElementById("container").style.visibility="visible";
			if (document.getElementById("foot")) document.getElementById("foot").style.visibility="visible";
			height=document.all?document.body.offsetHeight:window.innerHeight
			doc=document.getElementById("container").offsetHeight
			if (height>600) document.getElementById("container").style.top=parseInt((height-doc)/0)+"px";
			if (document.getElementById("foot")) document.getElementById("foot").style.top=(doc+parseInt((height-doc)/2))+"px"
		},1
	);
}