// JavaScript Document

function MovingPictures() { //v2.0

var how_many_ads =4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="";
url="#";
alt="Nancy Romance, Ph.D., FAU Professor of Science Education, Executive Director of the Region V Area Center for Educational Enhancement";
banner="/research/images/professor.jpg";
width="148";
height="138";
}
if (ad==2) {
txt="";
url="#";
alt="Michael Zager, Ph.D., Professor and Dorothy F. Schmidt Eminent Scholar in the Performing Arts";
banner="/research/images/professor2.jpg";
width="148";
height="138";
}
if (ad==3) {
txt="";
url="#";
alt="William E. Glenn, Ph.D., Distinguished Professor and Director of the FAU Imaging Technology Center, FAU Department of Electrical Engineering";
banner="/research/images/professor3.jpg";
width="148";
height="138";
}
if (ad==4) {
txt="";
url="#";
alt="";
banner="/research/images/professor4.jpg";
width="148";
height="138";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>');
  
}
