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=350 height=250 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="1" scrolling="yes"'

//Specify 7 URLs to display inside iframe, one for each day of week
var daycontent=new Array()
daycontent[1]="poe/lunedì.htm" //Monday content
daycontent[2]="poe/martedì.htm" //Tuesday content
daycontent[3]="poe/mercoledì.htm"
daycontent[4]="poe/giovedì.htm"
daycontent[5]="poe/venerdì.htm"
daycontent[6]="poe/sabato.htm"
daycontent[0]="poe/domenica.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.getDay()

//function dayofweek_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=daycontent[mytoday]
}

//Daily iframe content- © Dynamic Drive (www.dynamicdrive.com)
//For full source code, and Terms Of use, visit http://dynamicdrive.com
//This credit MUST stay intact for use
