<!-- 
var how_many_ads = 10;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="Spotlight on David Gimenez"; 
url="/spotlight.htm";
alt="Spotlight on David Gimenez";
banner="/images/ads/davidG.gif";
width="400";
height="51";
}
if (ad==2) {
txt="Spotlight on Lorenzo Bavaj"; 
url="/spotlight.htm";
alt="Spotlight on Lorenzo Bavaj";
banner="/images/ads/spotlight.gif";
width="400";
height="51";
}
if (ad==3) {
txt="Happy Birthday";
url="/guestbook/default.asp";
alt="Greet Jose Carreras Happy Birthday";
banner="/images/ads/bday.gif";
width="400";
height="51";
}
if (ad==4) {
txt="Happy Birthday";
url="/guestbook/default.asp";
alt="Greet Jose Carreras Happy Birthday";
banner="/images/ads/bday.gif";
width="400";
height="51";
}
if (ad==5) {
txt="Carreras Memorabilia"; 
url="/special/archive00.htm";
alt="Carreras Memorabilia";
banner="/images/ads/memo.gif";
width="400";
height="51";
}
if (ad==6) {
txt="Happy Birthday";
url="/guestbook/default.asp";
alt="Greet Jose Carreras Happy Birthday";
banner="/images/ads/bday.gif";
width="400";
height="51";
}
if (ad==7) {
txt="30th Anniversary"; 
url="/special/anniv2000a.htm";
alt="30th Anniversary";
banner="/images/ads/anniv.gif";
width="400";
height="51";
}
if (ad==8) {
txt="Happy Birthday";
url="/guestbook/default.asp";
alt="Greet Jose Carreras Happy Birthday";
banner="/images/ads/bday.gif";
width="400";
height="51";
}
if (ad==9) {
txt="Spotlight on David Gimenez"; 
url="/spotlight.htm";
alt="Spotlight on David Gimenez";
banner="/images/ads/davidG.gif";
width="400";
height="51";
}
if (ad==10) {
txt="Happy Birthday";
url="/guestbook/default.asp";
alt="Greet Jose Carreras Happy Birthday";
banner="/images/ads/bday.gif";
width="400";
height="51";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</center>');
// End --> 
