function close_confirm() {
	if (confirm("Etes vous sur?")) location.href = "http://laura.fr.tp/";
}
function remove_notice() {
	document.getElementById("antipop").innerHTML = "";
	document.getElementById("antipop").style.display = "none";
}
function popup_game(url) {
	var gameswin = window.open(url, "", "left=0,screenX=0,top=0,screenY=0,titlebar=no,toolbar=no,directory=no,scrolling=yes,scrollbar=yes,scroll=yes,width="+screen.width+",height="+(screen.height-50));
}
function load_game(url) {
var aw,ah;

if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  aw = window.innerWidth;
  ah = window.innerHeight;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  aw = document.body.offsetWidth;
  ah = document.body.offsetHeight;
 }
}
	popup_game(url);
var wd = 220;
var hd = 110;
var midw = (aw/2)-(wd/2);
var midh = ((ah/2)-(hd/2)-20);
        document.getElementById("antipop").style.visibility="visible";
        document.getElementById("antipop").style.width="220px";
        document.getElementById("antipop").style.height="110px";
        document.getElementById("antipop").style.left=midw+"px";
        document.getElementById("antipop").style.top=midh+"px";

        document.getElementById("antipop").innerHTML = "<table border=0 cellspacing=0 cellpadding=0 width=220 "+
"height=110 background=\"220x110.gif\"><tr height=20 valign=middle><td align=center><font size=2 "+
"color=red><b>ANTI-BLOQUEUR DE POP-UP</b></font></td></tr>"+
"<tr height=90><td align=center>Si le site ne s'ouvre pas :<br><a href=javascript:popup_game('"+url+"');remove_notice()>"+
"Cliquez ici</a> ou <a href=javascript:remove_notice()>Fermez cette boite</a>.</td></tr></table>";

	document.getElementById("antipop").style.display = "block";
	setTimeout("remove_notice()", 20000);
}
