function setBoxWidth() {
	if(window.innerWidth != undefined) {
		// get box width from c#
		var num = 6400;
		var w = (window.innerWidth > num) ? window.innerWidth : num;
		var el = document.getElementById("box");
		el.style["width"] = w + "px";
	}
}
onload = onresize = setBoxWidth;

function goDisclaimer(url,w,h) {
	var l = (window.screen.width / 2) - (w / 2 + 10);
	var t = (window.screen.height / 2) - (h / 2 + 40);
	var win2 = window.open(url, "popWin", "width=" + w + ",height=" + h + ",status=1,scrollbars=yes,left=" + l + ",top=" + t + ",screenX=" + l + ",screenY=" + t);
	win2.focus();
}
