function resize() {
	var el=document.getElementById("spacer"); 

	el.style.width=window.innerWidth/2+"px";
	el.style.height=(window.innerHeight-566)/2+"px";
	el.style.margin="auto";               
 }

window.onload = resize;
window.onresize = resize;

