// JavaScript Document

var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

var iframeprops='width=790 height=800 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

var daycontent=new Array()
daycontent[1]="../Schedule/monday.php"
daycontent[2]="../Schedule/tuesday.php"
daycontent[3]="../Schedule/wednesday.php"
daycontent[4]="../Schedule/thursday.php"
daycontent[5]="../Schedule/friday.php"
daycontent[6]="../Schedule/saturday.php"
daycontent[0]="../Schedule/sunday.php"

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
