<!--
//edit the links as you would with regular html but remeber the '/" changes and follow the examples as a guide

var how_many_ads = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) 
{
banner="willanslogo.gif";
width="130";
height="35";
}
if (ad==2) 
{
banner="complogo.gif";
width="130";
height="35";
}
if (ad==3) 
{
banner="powerflexlogo.gif";
width="130";
height="35";
}
if (ad==4) 
{
banner="quartermasterlogo.gif";
width="130";
height="35";
}
if (ad==5) 
{
banner="briselogo.gif";
width="130";
height="35";
}

document.write('<center>');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('</center>');
//-->
