
window.onresize=herschaal;

function herschaal(){

var t = document.getElementById("table1");
var w = document.getElementById("AllWrapper");

var h = (w.offsetHeight-t.offsetHeight)/2;
	if (h > 0){
		t.style.marginTop = h + "px";
	}
}

