function getBrowserWidth() {
	if (window.innerWidth)
		return window.innerWidth;
	else if (document.body.clientWidth)
		return document.body.clientWidth;
	else
		return 770;
}

function setMainWidth() {
	if (document.getElementById('container')) {
		var containerStyle = document.getElementById('container').style;
		var browserWidth = getBrowserWidth();
		if (browserWidth > 920) {
			if ((containerStyle.width != '') && (containerStyle.width != '920px')) containerStyle.width = '920px';
		} else if (browserWidth < 770) {
			containerStyle.width = '770px';
		} else {
			containerStyle.width = '100%';
		}
	}
}

function doResize() {
	setMainWidth();
	document.location.reload();
}

window.onresize = doResize;

function doPrint() {
	var pageUrl = this.location.href;
	var baseHref = pageUrl.substring(0, (pageUrl.lastIndexOf('/') + 1));
	window.open('/print.asp?base=' + escape(baseHref), 'print', 'toolbar=1,menubar=1,location=1,status=1,scrollbars=1,width=672,resizable=1,height=600');
}