

var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

// Specify IFRAME display attributes
var iframeprops='width=420 height=40 marginwidth="10" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

// Choose 7 URLs to display inside iframe, one for each day of week
var daycontent=new Array()
daycontent[1]="http://www.interscapedesign.com/home/didquotes/monday.html" //Monday content
daycontent[2]="http://www.interscapedesign.com/home/didquotes/tuesday.html" //Tuesday content
daycontent[3]="http://www.interscapedesign.com/home/didquotes/wednesday.html"
daycontent[4]="http://www.interscapedesign.com/home/didquotes/thursday.html"
daycontent[5]="http://www.interscapedesign.com/home/didquotes/friday.html"
daycontent[6]="http://www.interscapedesign.com/home/didquotes/saturday.html"
daycontent[0]="http://www.interscapedesign.com/home/didquotes/sunday.html"

// No edit after here
if (ie||dom)
document.write('<iframe id="dynstuff" src="" '+iframeprops+'></iframe>')

var mydate=new Date()
var mytoday=mydate.getDay()

function dayofweek_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=daycontent[mytoday]
}
}

window.onload=dayofweek_iframe

