<!--
//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(
//The following are the mysteriously removed spotlights (Retaining in case they return...
//"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/dcushman.html')\" class=\"more\"><img src=\"/images/spotlight/spotlight_cushman.jpg\" alt=\"Devon Cushman\" /><br /><span>More &raquo;</span></a>",
//"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/mclements.html')\" class=\"more\"><img //src=\"/images/spotlight/spotlight_clements.jpg\" alt=\"Mike Clements\" /><br /><span>More &raquo;</span></a>",
//"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/wtaylor.html')\" class=\"more\"><img src=\"images/spotlight/spotlight_taylor.jpg\" alt=\"Wendell Taylor\" /><br /><span>More &raquo;</span></a>"
//   Temporarily commenting out all but Dean Douglas
"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/tobias.html')\" class=\"more\"><img src=\"/images/spotlight/spotlight_tobias.jpg\" alt=\"Carl Tobias\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/narro.html')\" class=\"more\"><img src=\"/images/spotlight/spotlight_narro.jpg\" alt=\"Victor Narro\" /><br /><span>More &raquo;</span></a>",
"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/lain.html')\" class=\"more\"><img src=\"/images/spotlight/spotlight_lain.jpg\" alt=\"Corinna Lain\" /><br /><span>More &raquo;</span></a>",
 
"<a href=\"javascript:popup('http://law.richmond.edu/spotlight/chambers.html')\" class=\"more\"><img src=\"/images/spotlight/spotlight_chambers.jpg\" alt=\"Henry Chambers\" /><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);
    }
 }

// -->