// JavaScript Document
var how_many_ads = 5;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
alt="Wallace Telecommunications";
banner="images/center/pic01.jpg";
width="238";
height="300";
}
if (ad==2) {
alt="Wallace Telecommunications";
banner="images/center/pic02.jpg";
width="238";
height="300";
}
if (ad==3) {
alt="Wallace Telecommunications";
banner="images/center/pic03.jpg";
width="238";
height="300";
}
if (ad==4) {
alt="Wallace Telecommunications";
banner="images/center/pic04.jpg";
width="238";
height="300";
}
if (ad==5) {
alt="Wallace Telecommunications";
banner="images/center/pic05.jpg";
width="238";
height="300";
}
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0>');