// BEGIN 

var how_many_ads = 7;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="Water Quality Report, Our Commitment to Excellence";
url="forms/2008_wqr.pdf";
alt="Water Quality Report ";
banner="banner/ccr-ad.gif";
width="468";
height="60";
}
if (ad==2) {
txt="City of Hollywood gets 10% Discount on Flood Insurance";
url="services-storm_flood.htm";
alt="Flood Insurance Program";
banner="banner/flood-ad.gif";
width="468";
height="60";
}
if (ad==3) {
txt="Get information on Septic Tanks";
url="pub-info_septic.htm";
alt="Septic Tank Information";
banner="banner/septic-ad.gif";
width="468";
height="60";
}
if (ad==4) {
txt="Construction Information";
url="construction.htm";
alt="Construction Information";
banner="banner/const-ad.gif";
width="468";
height="60";
}
if (ad==5) {
txt="Hurricane Information";
url="pub-info_hurricane.htm ";
alt="Hurricane Information";
banner="banner/hurr-ad.gif";
width="468";
height="60";
}
if (ad==6) {
txt=" How to Read Your Water Meter ";
url="pub-info_water-meter.htm";
alt="How to Read Your Water Meter";
banner="banner/read-mtr-ad.gif";
width="468";
height="60";
}
if (ad==7) {
txt=" Become a Clean Water Cadet ";
url="pub-info_kids-factsheets.htm";
alt="Become a Clean Water Cadet";
banner="banner/water-ranger-ad.gif";
width="468";
height="60";
}
document.write('<center>');
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + banner + '\" width=');
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></A>');
document.write('</center>');
// End -->

