// JavaScript Document
	function PopIt() { 
		$("a#trigger").trigger('click');
		window.onbeforeunload = UnPopIt;
		return "We have a SPECIAL OFFER for you!  If you want to see this offer, please click on the Cancel button and take part in our survey!"; 
	}
	
	function UnPopIt()  { /* nothing to return */ } 

	$(document).ready(function() {
		window.onbeforeunload = PopIt;

		$("a#trigger").fancybox({
			'hideOnContentClick': false,
			'showCloseButton': true
		});

/*
$("a#trigger").fancybox({
			'frameWidth': 600,
			'frameHeight': 400,
			'hideOnContentClick': false,
			'showCloseButton': false
		});*/

		$("a[id!=trigger]").click(function(){ window.onbeforeunload = UnPopIt; });
	});

