//Random iframe content- © Dynamic Drive (www.dynamicdrive.com)

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

var iframeprops='width="160" height="255" frameborder="0" scrolling="no"'

var randomcontent=new Array()
randomcontent[0]="http://www.madonnahouse.org/restoration/publications/publication1.html"
randomcontent[1]="http://www.madonnahouse.org/restoration/publications/publication2.html"
randomcontent[2]="http://www.madonnahouse.org/restoration/publications/publication3.html"
randomcontent[3]="http://www.madonnahouse.org/restoration/publications/publication4.html"
randomcontent[4]="http://www.madonnahouse.org/restoration/publications/publication5.html"
randomcontent[5]="http://www.madonnahouse.org/restoration/publications/publication6.html"
randomcontent[6]="http://www.madonnahouse.org/restoration/publications/publication7.html"
randomcontent[7]="http://www.madonnahouse.org/restoration/publications/publication8.html"
randomcontent[8]="http://www.madonnahouse.org/restoration/publications/publication9.html"
randomcontent[9]="http://www.madonnahouse.org/restoration/publications/publication10.html"
if (ie||dom)
document.write('<h4>Featured publication</h4>')
document.write('<iframe id="dynstuff" src="" '+iframeprops+'></iframe>')

function random_iframe(){
if (ie||dom){
var iframeobj=document.getElementById? document.getElementById("dynstuff") : document.all.dynstuff
iframeobj.src=randomcontent[Math.floor(Math.random()*randomcontent.length)]
}
}

window.onload=random_iframe