function hasardFromTaux(tabElements){
    valHasard = Math.random()*100;
    maxElement = 0;
    for (idElement in tabElements){
        maxElement += tabElements[idElement][1];
        if (valHasard<=maxElement)
            return tabElements[idElement][0];
    }
    return false;
}
tabPublications= [["<a href='http://adserver.24h00.com/redirections/pubs/redirection_211.php?place=145' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_211.gif?place=145' width='186' height='116' border='0' alt='Ephémère Afflelou'></a>", 25], ["<a href='http://adserver.24h00.com/redirections/pubs/redirection_213.php?place=145' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_213.gif?place=145' width='186' height='116' border='0' alt='Printemps 06'></a>", 25], ["<a href='http://adserver.24h00.com/redirections/pubs/redirection_215.php?place=145' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_215.gif?place=145' width='186' height='116' border='0' alt='Ligne Sarah'></a>", 25], ["<a href='http://adserver.24h00.com/redirections/pubs/redirection_217.php?place=145' target='_blank'><img src='http://adserver.24h00.com/redirections/pubs/pub_217.gif?place=145' width='186' height='116' border='0' alt='Remise Tirage Numérique'></a>", 25]];
document.write(hasardFromTaux(tabPublications));



