
<!-- 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="Nightshift Play Longer";
url="";
alt="Nightshift";
banner="images/45minutebanner150150.gif";
width="150";
height="150";
}






if (ad==2) {
txt="Mailing List";
url="mailinglist.html";
alt="Mailing List";
banner="images/mailinglistbanner150150.gif";
width="150";
height="150";
}






if (ad==3) {
txt="Testimonies";
url="testimonies.html";
alt="Testimonies";
banner="images/testimonybanner150150.gif";
width="150";
height="150";
}





document.write('<center>');

if (url=="") {
document.write('')
}
else
{

document.write('<a href=\"' + url + '\" target=\"Ext\">')
}





document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0 valign=bottom><br>');
//document.write('<small>' + txt + '</small></a>');
document.write('</a>');
document.write('</center>');
// End -->

