
/* brown and brown javascript file */

function openDisclaimer(redirect) {
	var imageWidth = 225; var imageHeight = 200;
	var left = Math.floor( (screen.width - imageWidth) / 2);
	var top = Math.floor( (screen.height - imageHeight) / 2);
	var w = window.open('content/includes/disclaimer.htm?'+escape(redirect),'disclaimer','left='+left+',top='+top+',width=225,height=200');
	w.focus();
	return false;
}