<!-- Begin

// Rotating Banner Ad Script for awcommunity.org
// Adapted from one found off the Net :)
// Feel free to adapt for your own site :)

var how_many_ads = 1;			// Add to this number to add banners
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

// Add ads below using this template:
// if (ad==#) {
// txt="Text to go below ad";
// url="URL to link to";
// alt="ALT text for IMG tag";
// banner="URL of banner";
// width="###";					usually 468
// height="##";					usually 60

// ComReg
// Keep forever (or until AW goes down the drain...)
if (ad==1) {
txt="AW Community Register features towns, worlds, and societies! Click here.";
url="http://www.awcommunity.org/awcomreg/";
alt="AW Community Register features towns, worlds, and societies! Click here.";
banner="http://www.awcommunity.org/banners/comreg.jpg";
width="468";
height="60";
}

document.write('<div align=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('<font size=-1>' + txt + '</font></a>');
document.write('</div>');

// End -->