function rdm_img(nrub, totalimg, width, height) {
// affiche une image aléaoire pour chaque rubrique
var random_num = (Math.round((Math.random()*[totalimg-1])+1));
var img = ("IMG/rub"+(nrub)+"img"+(random_num)+".jpg");
document.write("<img src="+img+" width="+width+" height="+height+">");
}