<!-- Begin
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="Advertisement";
url="http://www.se7enthepoet.com/";
alt="Se7en - Power of the Word";
banner="banner550x62-se7en.jpg";
width="550";
height="62";
}
if (ad==2) {
txt="Advertisement";
url="http://www.bet.com/video/shows/TheMoNiqueShow";
alt="The Monique Show";
banner="banner550x62-monique.jpg";
width="550";
height="62";
}
if (ad==3) {
txt="Advertisement";
url="http://www.houstonrockets.com/";
alt="Houston Rockets";
banner="banner550x62-rockets.jpg";
width="550";
height="62";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small><font color=00CCFF>' + txt + '</font></small></a>');
document.write('</center>');
// End -->
