function ccPopup(val) {
	var popupUrl = "/constantContact.jsp?email="+val;
//	alert(popupUrl);
	popWidth = 870;
	popHeight = 533;
	popLeft = (screen.width - popWidth) / 3;
	popTop = (screen.height - popHeight) / 3;
	popup = window.open(popupUrl,
						'ccPopup',
						'width=' + popWidth +
						',height=' + popHeight +
						',left=' + popLeft +
						',top=' + popTop +
						',menubar=no,toolbar=no,directories=no,location=no,status=no,scrollbars=yes,resizable=yes');
	ccWindow=popup.focus();
}
