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

//Specify IFRAME display attributes
var iframeprops_cu='width=226 height=850 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

//Specify 7 URLs to display inside iframe, one for each day of week
var daycontent_cu=new Array()
daycontent_cu[1]="/js/contact-us.htm" //Monday content
daycontent_cu[2]="/js/contact-us.htm" //Tuesday content
daycontent_cu[3]="/js/contact-us.htm"
daycontent_cu[4]="/js/contact-us.htm"
daycontent_cu[5]="/js/contact-us.htm"
daycontent_cu[6]="/js/contact-us.htm"
daycontent_cu[0]="/js/contact-us.htm"

//No need to edit after here
if (ie_cu||dom_cu)
document.write('<iframe id="dynstuff_cu" src="" '+iframeprops_cu+'></iframe>')

var mydate_cu=new Date()
var mytoday_cu=mydate_cu.getDay()

function dayofweek_iframe_cu(){
if (ie_cu||dom_cu){
var iframeobj_cu=document.getElementById? document.getElementById("dynstuff_cu") : document.all.dynstuff_cu
iframeobj_cu.src=daycontent_cu[mytoday_cu]
}
}

window.onload=dayofweek_iframe_cu;

