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_14831_pop") == "on") { PubdirecteSetCook("pubdirecte_14831_pop","off"); window.open('http://www.pubdirecte.com/script/pop_redirect.php?id=14831&ref=7832&secure=2a688c2ee1258f7b7475c131da25fb17&referer=&c=US');window.focus(); } } setTimeout('pop ();',5000);