function confirmation(url) {
	var message = "By clicking the OK button below, you will leave Excedrin.com and link to a third party website that may have a different privacy policy and information collection practices.\n\nPlease be sure to review the privacy policy and terms and conditions posted at that site.";
	if (confirm(message)) {
	 window.open(url);
	}
}
