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 pop ()
{
if(ScanCookie("popunder")==0)
{
document.cookie="popunder=oui;path=/;";
window.open('http://www.asexyblog.com/pop.php','pop','toolbar=0,location=0,directories=0,status=0,scrollbars=0,resizable=0,copyhistory=0,menuBar=0,width=250,height=250,');

window.focus(); // supprimez ces 2 lignes si vous voulez un popup
pop.blur(); // laissez les pour un popunder
 pup=1;
}
}
document.onclick=pop;