// Random function for banner -->
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds(10)
var ad = sec % how_many_ads;

ad +=1;
if (ad==1) {
txt="";
alt="Cliquez pour vous inscrire!";
banner="../images/photo-ent.jpg";
width="411";
height="144";
}
if (ad==2) {
txt=""; 
alt="Cliquez pour vous inscrire!";
banner="../images/photo-ent2.jpg";
width="411";
height="144";
}
if (ad==3) {
txt=""; 
alt="Cliquez pour vous inscrire!";
banner="../images/photo-ent.jpg";
width="411";
height="144";
}
if (ad==4) {
txt=""; 
alt="Cliquez pour vous inscrire!";
banner="../images/photo-ent2.jpg";
width="411";
height="144";
}
document.write('<img src=\"' + banner + '\" width='+width+' height='+height+' alt=\"'+alt+'\" border=0>');
// End random banner -->

