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);
	}
}

/*
	function PopIt() { 
		$("a#trigger").trigger('click');
		window.onbeforeunload = UnPopIt;
		return "Would you like to join our mailing list for other offers?"; 
	}
 
	function UnPopIt()  { /* nothing to return } 
 
	$(document).ready(function() {
		window.onbeforeunload = PopIt;
 
		$("a#trigger").fancybox({
			'hideOnContentClick': false,
			'showCloseButton': false
		});
 
		$("a[id!=trigger]").click(function(){ window.onbeforeunload = UnPopIt; });
	});

*/ 


