function Center()
{
	var Main = ((document.getElementById("Offset").offsetWidth - 1100) / 2)
	if (Main < 0)
	{
		Main = 0
	}
  document.getElementById("container").style.left = Main + "px"
	var topheight = document.getElementById("top").offsetHeight - 2
	var midheight = document.getElementById("main").offsetHeight - 12
	var lowheight = document.getElementById("bottom").offsetHeight - 2
	if (document.getElementById("left").offsetHeight > midheight)
	{
		midheight = document.getElementById("left").offsetHeight - 2
	}
	if (document.getElementById("right").offsetHeight > midheight)
	{
		midheight = document.getElementById("right").offsetHeight - 2
	}
	document.getElementById("left").style.height = (midheight + 10) + "px"
	document.getElementById("main").style.height = midheight + "px"
	document.getElementById("right").style.height = (midheight + 10) + "px"
	document.getElementById("left").style.top = (topheight + 20) + "px"
	document.getElementById("main").style.top = (topheight + 20) + "px"
	document.getElementById("right").style.top = (topheight + 20) + "px"
	document.getElementById("bottom").style.top = (topheight + midheight + 30) + "px"
	document.getElementById("container").style.height = (topheight + midheight + lowheight + 30) + "px"
	document.getElementById("container").style.visibility = "visible"
	document.getElementById("load").style.visibility = "hidden"
}