var ie=document.all
var dom=document.getElementById

//Specify IFRAME display attributes
var iframeprops='width=150 height=150 marginwidth="1" marginheight="0" hspace="0" vspace="0" frameborder="1" scrolling="no"'

//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://www.sitesoweb.com/quote/1.htm"
daycontent[2]="http://www.sitesoweb.com/quote/2.htm"
daycontent[3]="http://www.sitesoweb.com/quote/3.htm"
daycontent[4]="http://www.sitesoweb.com/quote/4.htm"
daycontent[5]="http://www.sitesoweb.com/quote/5.htm"
daycontent[6]="http://www.sitesoweb.com/quote/6.htm"
daycontent[7]="http://www.sitesoweb.com/quote/7.htm"
daycontent[8]="http://www.sitesoweb.com/quote/8.htm"
daycontent[9]="http://www.sitesoweb.com/quote/9.htm"
daycontent[10]="http://www.sitesoweb.com/quote/10.htm"
daycontent[11]="http://www.sitesoweb.com/quote/11.htm"
daycontent[12]="http://www.sitesoweb.com/quote/12.htm"
daycontent[13]="http://www.sitesoweb.com/quote/13.htm"
daycontent[14]="http://www.sitesoweb.com/quote/14.htm"
daycontent[15]="http://www.sitesoweb.com/quote/15.htm"
daycontent[16]="http://www.sitesoweb.com/quote/16.htm"
daycontent[17]="http://www.sitesoweb.com/quote/17.htm"
daycontent[18]="http://www.sitesoweb.com/quote/18.htm"
daycontent[19]="http://www.sitesoweb.com/quote/19.htm"
daycontent[20]="http://www.sitesoweb.com/quote/20.htm"
daycontent[21]="http://www.sitesoweb.com/quote/21.htm"
daycontent[22]="http://www.sitesoweb.com/quote/22.htm"
daycontent[23]="http://www.sitesoweb.com/quote/23.htm"
daycontent[24]="http://www.sitesoweb.com/quote/24.htm"
daycontent[25]="http://www.sitesoweb.com/quote/25.htm"
daycontent[26]="http://www.sitesoweb.com/quote/26.htm"
daycontent[27]="http://www.sitesoweb.com/quote/27.htm"
daycontent[28]="http://www.sitesoweb.com/quote/28.htm"
daycontent[29]="http://www.sitesoweb.com/quote/29.htm"
daycontent[30]="http://www.sitesoweb.com/quote/30.htm"
daycontent[31]="http://www.sitesoweb.com/quote/31.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]
}
}

