<!--//

// This script is required on many pages.  Do not delete.

//Random Image Generator

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = 'photo.jpg'
theImages[1] = 'photo2.jpg'
theImages[2] = 'photo3.jpg'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="/images/'+theImages[whichImage]+'">');
}


//New Window with parms
function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// Popup for undergrad course descriptions
function crsdescunderpop(theURL) { //v1.0
	window.open('http://eagle.ufl.edu/cgi-bin/eaglec?PAGE=RAI-CDESC&MDASKEYY='+theURL,'Course_Descriptions','toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=400');
}

// Popup for grad course descriptions
function crsdescgradpop(theURL) { //v1.0
	window.open('http://eagle.ufl.edu/cgi-bin/eaglec?PAGE=RAI-CGRAD','Course_Descriptions','toolbar=yes,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=500,height=400');
}
//-->

