function fixPage() {
	var page = document.getElementById("b-page")
	var pageWidth = document.getElementById("b-page").offsetWidth;
	var navWidth = document.getElementById("p-nav").offsetWidth;
	var width = pageWidth-navWidth-30;
	if (width > 720) {
		width = 720;
	}
	document.getElementById("m-page").style.width = width+"px";
}
window.onresize = fixPage;
addOnloadHook(fixPage);

f = function() { updateTooltipAccessKeys(document.getElementsByTagName("a")); }
addOnloadHook(f);

var isIE6 = (navigator.userAgent.indexOf("MSIE 6") != -1);
f = function() { if (isIE6) { document.getElementById("m-page").style.margin = "10px 0px 0px 0px"; } }
addOnloadHook(f);
