var numero_de_banners =3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % numero_de_banners;
ad +=1;

if (ad==1) {
url="http://www.imagepro.com.br/a_image_pro/index.asp";
target="_parent";
banner="http://www.imagepro.com.br/banners/banner_home.gif";
width="468";
height="60";
}

if (ad==2) {
url="http://www.imagepro.com.br/produtos/index.asp";
target="_parent";
banner="http://www.imagepro.com.br/banners/banner_produtos.gif";
width="468";
height="60";
}

if (ad==3) {
url="http://www.imagepro.com.br/servicos/index.asp";
target="_parent";
banner="http://www.imagepro.com.br/banners/banner_servicos.gif";
width="468";
height="60";
}
document.write('<a href=\"' + url + '\" target=\"' + target + '"\>');
document.write('<img src=\"' + banner + '\" width=');
document.write(width + ' height=' + height + ' ');
document.write('border=0></a><br>');
