// JavaScript Document
<!-- 
var how_many_ads = 3;

var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; 
ad +=1;

if (ad==1) { 
alt="refresh"; banner="Season12/New Site Graphics/kraineint.jpg"; 
width="225"; 
height="200"; 
} 
if (ad==2) { 
alt="refresh"; banner="Season12/New Site Graphics/RedRoom02.gif"; 
width="225"; 
height="200"; 
} 
if (ad==3) { 
alt="refresh"; 
banner="Season12/New Site Graphics/usmhead.jpg"; width="225"; height="200"; 
}
document.write('<center>'); 
document.write('<img src=\"' + banner + '\" width=') 
document.write(width + ' height=' + height + ' '); 
document.write('alt=\"' + alt + '\" border=0><br>'); 
document.write('</center>'); 
// --> 
