var POPUNDER = {
	url : 'http://www.partirdemain.com',
	cookie_name : 'popunder',
	popped : false,
	
	init: function() {
		if(null == $.cookie(POPUNDER.cookie_name)) {
			$('body').click(function () {
				$.cookie(POPUNDER.cookie_name, 'ok');
				if(false == POPUNDER.popped) {
					POPUNDER.popped = true;
					w = window.open(POPUNDER.url,'','width='+$(window).width()+', height='+$(window).height()+', scrollbars=1, resizable=1, toolbar=1, location=1, menubar=1, status=1, directories=0');
				    if (w!=null) { 
						w.moveTo(0,0); 
						w.location = POPUNDER.url; 
						w.blur(); 
						window.focus(); 
						setTimeout('window.focus();', 500);
					}
				}
			});
		}
	}	
};

POPUNDER.init();
