
var ie=document.all
var dom=document.getElementById

//Specify IFRAME display attributes
var iframeprops='width="425" height="300" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="auto" allowtransparency="true"'

//Specify 31 URLs to display inside iframe, one for each day of the current month
//If this month has less than 31 days, the last few URLs won't be used.
var daycontent=new Array()
daycontent[1]="http://library.tulane.edu/resourceoftheday/nov/071101.htm"
daycontent[2]="http://library.tulane.edu/resourceoftheday/nov/071102.htm"
daycontent[3]="http://library.tulane.edu/resourceoftheday/nov/071103.htm"
daycontent[4]="http://library.tulane.edu/resourceoftheday/nov/071104.htm"
daycontent[5]="http://library.tulane.edu/resourceoftheday/nov/071105.htm"
daycontent[6]="http://library.tulane.edu/resourceoftheday/nov/071106.htm"
daycontent[7]="http://library.tulane.edu/resourceoftheday/nov/071107.htm"
daycontent[8]="http://library.tulane.edu/resourceoftheday/nov/071108.htm"
daycontent[9]="http://library.tulane.edu/resourceoftheday/nov/071109.htm"
daycontent[10]="http://library.tulane.edu/resourceoftheday/nov/071110.htm"
daycontent[11]="http://library.tulane.edu/resourceoftheday/nov/071111.htm"
daycontent[12]="http://library.tulane.edu/resourceoftheday/nov/071112.htm"
daycontent[13]="http://library.tulane.edu/resourceoftheday/nov/071113.htm"
daycontent[14]="http://library.tulane.edu/resourceoftheday/nov/071114.htm"
daycontent[15]="http://library.tulane.edu/resourceoftheday/nov/071115.htm"
daycontent[16]="http://library.tulane.edu/resourceoftheday/nov/071108.htm"
daycontent[17]="http://library.tulane.edu/resourceoftheday/nov/071117.htm"
daycontent[18]="http://library.tulane.edu/resourceoftheday/nov/071118.htm"
daycontent[19]="http://library.tulane.edu/resourceoftheday/nov/071119.htm"
daycontent[20]="http://library.tulane.edu/resourceoftheday/nov/071120.htm"
daycontent[21]="http://library.tulane.edu/resourceoftheday/nov/071121.htm"
daycontent[22]="http://library.tulane.edu/resourceoftheday/nov/071122.htm"
daycontent[23]="http://library.tulane.edu/resourceoftheday/nov/071123.htm"
daycontent[24]="http://library.tulane.edu/resourceoftheday/nov/071124.htm"
daycontent[25]="http://library.tulane.edu/resourceoftheday/nov/071125.htm"
daycontent[26]="http://library.tulane.edu/resourceoftheday/nov/071126.htm"
daycontent[27]="http://library.tulane.edu/resourceoftheday/nov/071127.htm"
daycontent[28]="http://library.tulane.edu/resourceoftheday/nov/071128.htm"
daycontent[29]="http://library.tulane.edu/resourceoftheday/nov/071129.htm"
daycontent[30]="http://library.tulane.edu/resourceoftheday/nov/071130.htm"
daycontent[31]="http://library.tulane.edu/resourceoftheday/nov/071131.htm"

//No need to edit after here
if (ie||dom)
document.write('<iframe id="dynstuff" src="" '+iframeprops+'></iframe>')

var mydate=new Date()
var mytoday=mydate.getDate()

function dayofmonth_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=daycontent[mytoday]
}
}

window.onload=dayofmonth_iframe