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();
}