<!--
//Pop-up window for spotlight
function popup(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=700,height=555');");
}

//Spotlight Promo Rotation script
var spotlight = new Array(
"<a href=\"javascript:popup('spotlight/denglish.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_english.jpg\" alt=\"Daniel English\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('spotlight/jhoyle.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_hoyle.jpg\" alt=\"Joe Hoyle\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('spotlight/mhealey.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_healey.jpg\" alt=\"Melanie Healey\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('spotlight/jerb.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_erb.jpg\" alt=\"Joel Erb\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('spotlight/dcroushore.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_croushore.jpg\" alt=\"Dean Croushore\" /><br /><span>More &raquo;</span></a>"
);

var a = -1;
var b = 0;
var max = spotlight.length;
var c = Math.random();
c *= max;
c = parseInt(c);
if(isNaN(c)) c = 0;
 else c %= max;
 b = c;
 b %= max;
 function displaySpotlight() 
 {
   var a;
   a = spotlight[b];
    {
	document.write(a);
    }
 }

// -->