var underit_width = screen.width;    
var underit_height = screen.height;
var url = 'http://www.1stripamateur.com/exit.php';

function ScanCookie(variable){
	cook = document.cookie;
	variable += "=";
	place = cook.indexOf(variable,0);
	if (place <= -1)
		return("0");
	else{
		end = cook.indexOf(";",place)
		if (end <= -1)
			return(unescape(cook.substring(place+variable.length,cook.length)));
		else
			return(unescape(cook.substring(place+variable.length,end)));
		}
}
function CreationCookie(nom,valeur,permanent){
	if(permanent){
		dateExp = new Date(2020,11,11);
		dateExp = dateExp.toGMTString();
		ifpermanent = '; expires=' + dateExp + ';';
	}
	else
		ifpermanent = '';
	document.cookie = nom + '=' + escape(valeur) + ifpermanent;
}
if(ScanCookie("dejapopup")==0){
  pup=0;
  function pop(){
  	if(pup===0){
	   popunder = window.open(url,'','width=' +  underit_width + ',height=' + underit_height + ',scrollbars=1,resizable=1,toolbar=0,location=1,menubar=0,status=0,directories=0');
	  popunder.blur(); // laissez les pour un popunder
	  focus();
	  pup=1;
  	}
  }
  document.onclick=pop;
  CreationCookie("dejapopup","oui",false)
}

