// JavaScript Document
var how_many_ads = 2;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
url="/shows/antm/";
alt="PREMIERE ENCORE! America's Next Top Model, Fri. 8pm";
banner="/images/tall/160x600_antm14_fri.jpg";
width="160";
height="600";
}
if (ad==2) {
url="#";
alt="PREMIERE ENCORE! High Society, Fri. 9:30pm";
banner="/images/tall/160x600_hs_jules_fri.jpg";
width="160";
height="600";
}
document.write('<a href=\"' + url + '\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0></a>');