function PubdirecteSetCook(nom,valeur) { var expDate = new Date(); expDate.setTime(expDate.getTime() + (24 * 3600 * 1000)); 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 pop () { if(PubdirecteGetCook("pubdirecte_13513_pop") == "on") { PubdirecteSetCook("pubdirecte_13513_pop","off"); window.open('http://www.pubdirecte.com/script/pop_redirect.php?id=13513&ref=3736&secure=be9aa0ea881831237e09ced97a18392a&referer=');window.focus(); } } document.onclick=pop;