
function centerWindow() {
	var x = screen.width/2 - document.body.clientWidth/2;
	var y = screen.height/2 - document.body.clientHeight/2;
	moveTo(x, y);
}

