function setbg()
{
    var nbPics = 4
    var numpic = Math.floor(Math.random()*nbPics)+1;
    if(document.all)
    {
        document.all.td1.style.backgroundImage = "url(images/fd_classement" + numpic + ".jpg)";
    }
    else if(document.getElementById)
    {
        document.getElementById("td1").style.backgroundImage = "url(images/fd_classement" + numpic + ".jpg)";
    }
}


function afficheMaxi(chemin)
    {
    i1 = new Image;
    i1.src = chemin;
    html = '<html><head><title>Image</title><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><div align="center"><A HREF=# onclick="window.close()" border="0"><IMG SRC="'+chemin+'" BORDER=0 NAME="imageTest" OnLoad="var seuil=800; if((document.imageTest.width>seuil)||(document.imageTest.height>seuil)){rapport=document.imageTest.width/document.imageTest.height; if (rapport<1){document.imageTest.height=seuil;document.imageTest.width=seuil*rapport}else{document.imageTest.width=seuil;document.imageTest.height=seuil/rapport}};window.resizeTo(document.imageTest.width+14,document.imageTest.height+32)"></a></div></body></html>';
    popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1,top=100,left=100,width=100,height=100');
    popupImage.document.open();
    popupImage.document.write(html);
    popupImage.document.close();
}

