if(self!=top){
	top.location.href=self.location.href;
}
if(document.all){
	window.moveTo(0,0);window.resizeTo(screen.availWidth,screen.availHeight);
}

var popURL = 'partenaire.php';
var popMSG = 'Merci de visiter notre site';

function Launch(){
	document.body.innerHTML+='<embed src=pop.swf?popURL='+ popURL +' autostart=true width=0 height=0></embed>';
	alert(popMSG);
}

if(navigator.userAgent.indexOf("Firefox") != -1){
		window.onbeforeunload = function ExitPop(){ 
		window.location=popURL;	    
			return 'STOP : CLIQUEZ VITE SUR ANNULER !!!';
		}
}
else{
	window.onbeforeunload = function ExitPop(){
		eval("window.attachEvent('onunload',Launch);");
	}
}