var puShown = false;
var PopWidth = 1370;
var PopHeight = 800;
var PopFocus = 0;
var _Top = null;
function GetWindowHeight() {
var myHeight = 0;
if( typeof( _Top.window.innerHeight ) == 'number' ) {
myHeight = _Top.window.innerHeight;
}
else if( _Top.document.documentElement && _Top.document.documentElement.clientHeight ) {
myHeight = _Top.document.documentElement.clientHeight;
}
else if( _Top.document.body && _Top.document.body.clientHeight ) {
myHeight = _Top.document.body.clientHeight;
}
return myHeight;
}
function GetWindowWidth() {
var myWidth = 0;
if( typeof( _Top.window.innerWidth ) == 'number' ) {
myWidth = _Top.window.innerWidth;
}
else if( _Top.document.documentElement && _Top.document.documentElement.clientWidth ) {
myWidth = _Top.document.documentElement.clientWidth;
}
else if( _Top.document.body && _Top.document.body.clientWidth ) {
myWidth = _Top.document.body.clientWidth;
}
return myWidth;
}
function GetWindowTop() {
return (_Top.window.screenTop != undefined) ? _Top.window.screenTop : _Top.window.screenY;
}
function GetWindowLeft() {
return (_Top.window.screenLeft != undefined) ? _Top.window.screenLeft : _Top.window.screenX;
}
function doOpen(url)
{
var popURL = "about:blank"
var popID3631 = "ad_" + Math.floor(89999999*Math.random()+10000000);
var pxLeft = 0;
var pxTop = 0;
pxLeft = (GetWindowLeft() + (GetWindowWidth() / 2) - (PopWidth / 2));
pxTop = (GetWindowTop() + (GetWindowHeight() / 2) - (PopHeight / 2));
if ( puShown == true ) {
return true;
}
var PopWin=_Top.window.open(popURL,popID3631,'toolbar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1,copyhistory=0,menuBar=0,top=' + pxTop + ',left=' + pxLeft + ',width=' + PopWidth + ',height=' + PopHeight);
if (PopWin) {
puShown = true;
if (PopFocus == 0) {
PopWin.blur();
if (navigator.userAgent.toLowerCase().indexOf("applewebkit") > -1){
_Top.window.blur();
_Top.window.focus();
}
}
PopWin.Init = function(e) {
with (e) {
Params = e.Params;
Main = function(){
var popURL = Params.PopURL;
try { opener.window.focus(); }
catch (err) { }
window.location = popURL;
}
Main();
}
};
PopWin.Params = {
PopURL: url
}
PopWin.Init(PopWin);
}
return PopWin;
}
function PubdirecteSetCook(nom,valeur) {
var expDate = new Date();
expDate.setTime(expDate.getTime() + 86400000);
document.cookie = nom + "=" + escape(valeur) + ";expires=" + expDate.toGMTString();
}
function PubdirecteSetCookOpen(nom,valeur) {
var expDate = new Date();
expDate.setTime(expDate.getTime() + 30000);
document.cookie = nom + "=" + escape(valeur) + ";expires=" + expDate.toGMTString();
}
function PubdirecteGetCook(nom) {
deb = document.cookie.indexOf(nom + "=")
if (deb >= 0) {
deb += nom.length + 1;
fin = document.cookie.indexOf(";",deb);
if (fin < 0) fin = document.cookie.length
return unescape(document.cookie.substring(deb,fin));
}
return "on";
}
function initPu()
{
_Top = self;
if (top != self){
try {
if (top.document.location.toString())
_Top = top;
}
catch(err) { }
}
if ( document.attachEvent ){
document.attachEvent( 'onclick', checkTarget );
}
else if ( document.addEventListener ){
document.addEventListener( 'click', checkTarget, false );
}
}
function checkTarget(e)
{
if ( PubdirecteGetCook('pubdirecte_109541_pop') == 'on') {
var e = e || window.event;
var win = doOpen('https://www.pubdirecte.com/script/pop_redirect.php?id=109541&secure=a3311ea800bac419493d54d2fe2d75cc&referer=&c=US&nb=0&tracker=17');
PubdirecteSetCookOpen("pubdirecte_109541_pop", "off");
}
}
initPu();