// Comienzo
var banners = 6;
var ahora = new Date()
var segundos = ahora.getSeconds()
var ad = segundos % banners;
ad +=1;
if (ad==1) {
flash="images/1.png"
width="331";
height="544";
}
if (ad==2) {
flash="images/2.png"
width="331";
height="544";
}
if (ad==3) {
flash="images/3.png"
width="331";
height="544";
}
if (ad==4) {
flash="images/4.png"
width="331";
height="544";
}
if (ad==5) {
flash="images/5.png"
width="331";
height="544";
}
if (ad==6) {
flash="images/6.png"
width="331";
height="544";
}

document.write('<td style=" background-image:url(' + flash + '); background-repeat:no-repeat;">');

// Fin