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;
	}
	
function load_pop_power()
{
site = new Array(1);
site[0] = "http://www.stars-du-porno.tv/video-x-offerte.html";
site[1] = "http://www.stars-du-porno.tv/video-x-offerte.html";
random = Math.floor(Math.random() * site.length);
if(ScanCookie("ex")==0)
  {
    win2 =  window.open(site[random],'_blank',"top=60, left=60, width=381, height=302, scrollbars=0, resizable=1, toolbar=0, location=1, menubar=0, status=1, directories=1");
    win2.blur()
    window.focus()
    CreationCookie("ex","oui",false)
  }
}


