function OuvrePopup() {
    // Vérifie que le cookie "pop1fois" n'est pas présent
    if (GetCookie("pop1fois")==null) {
        // Paramétrez ici le mode d'affichage du popup
        window.open("prechargement.html","pop1fois","width=200, height=100, toolbars=no, scrollbars=no");
        // Enregistre le cookie pour une durée de 24 heures
        var pathname=location.pathname;
        var myDomain=pathname.substring(0,pathname.lastIndexOf('/')) +'/';
        var date_exp = new Date();
        date_exp.setTime(date_exp.getTime()+(24*3600*1000)); // 24 heures
        SetCookie("pop1fois","ok",date_exp,myDomain);
    }
}