function PageSetup () {
	var stl = document.getElementById ('bgpanel').style;
	stl.height = document.body.scrollHeight;
	if (navigator.appName == "Microsoft Internet Explorer") {
		stl.width = document.body.offsetWidth;
	} else {
		stl.width = document.body.scrollWidth;
	}
}
