var popunder=new Array()
var width = '417'; 
var height = '314';
var p = 'scrollbars=no, resizable=no, toolbar=no,' + 'menubar=no, status=no, location=no, left=0, top=0, height=' + height + ',width=' + width;

var cookie_name= 'popunder_ppc';

function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search);
    if (offset != -1) { // if the cookie exists
      offset += search.length;
      end = document.cookie.indexOf(";", offset);
      
    if (end == -1) // set the index of the end of cookie value
         end = document.cookie.length;
         returnvalue = unescape(document.cookie.substring(offset, end));
      }
   }
  return returnvalue;
}

function load_pop_power(){
	var width = '417'; 
	var height = '314';
	var p = 'scrollbars=no, resizable=no, toolbar=no,' + 'menubar=no, status=no, location=no, left=0, top=0, height=' + height + ',width=' + width;
	var popunder = window.open('/popunder_inscr_nl.htm','_blank',p);
	popunder.blur()
	window.focus();
}

function check_popunder(){
now=new Date()
jour=now.getDate();
mois=now.getMonth();
annee=now.getFullYear();
date=jour+'/'+mois+'/'+annee;

	if(!LireCookie(cookie_name)){
		EcrireCookie(cookie_name,date);
		load_pop_power();
	}
	else{
		if(LireCookie(cookie_name) != date){
		EcrireCookie(cookie_name,date);
		load_pop_power();
		}
		
	}
}