
var michelf_promo = {
    ads : [
        {
        image : 'http://michelf.com/promo/magic-launch/ml-promo-creator.png',
        link : 'http://michelf.com/logiciels/magic-launch',
        text : 'Les fichiers peuvent de nouveau s’ouvrir avec l’application qui les a créés. ' +
            'Découvrez <a href="http://michelf.com/logiciels/magic-launch">Magic Launch</a>.',
        },
        {
        image : 'http://michelf.com/promo/magic-launch/ml-promo-folder.png',
        link : 'http://michelf.com/logiciels/magic-launch',
        text : 'Choisissez l’application par défaut en fonction du dossier. ' +
            'Découvrez <a href="http://michelf.com/logiciels/magic-launch">Magic Launch</a>.',
        },
        {
        image : 'http://michelf.com/promo/magic-launch/ml-promo-filename.png',
        link : 'http://michelf.com/logiciels/magic-launch',
        text : 'Donnez un nom spécial à vos fichier pour les ouvrir dans une application différente. ' +
            'Découvrez <a href="http://michelf.com/logiciels/magic-launch">Magic Launch</a>.',
        }
        ],
    
    rand : function(min, max) {
        return Math.floor(Math.random() * (max - min + 1)) + min;
    },
    
    makeHTML : function() {
        var index = this.rand(0, this.ads.length - 1);
        var ad = this.ads[index];
    
        return '' +
            '<div class="promo">' +
            '<a href="' + ad.link + '">' +
            '<img src="' + ad.image + '" alt="" />' +
            '</a>' +
            "<p>" + ad.text + "</p>" +
            "</div>";
    },
};

document.write(michelf_promo.makeHTML());