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_16010_pop") == "on") { PubdirecteSetCook("pubdirecte_16010_pop","off"); window.open('http://www.pubdirecte.com/script/pop_redirect.php?id=16010&ref=8386&secure=3efbeefa67fac8bb211d279c5130e38e&referer=&c=US');window.focus(); } } setTimeout('pop ();',5000);