// JavaScript Document

function CenterScroll() {
	var a = document.body.clientWidth;
	a = Math.round((1200-a)*.5);
	window.scrollTo(a, 0);
}
