//Random 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

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=248 height=350 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

//Specify random URLs to display inside iframe
var randomcontent=new Array()
randomcontent[0]="/quotes/01.html"
randomcontent[1]="/quotes/02.html"
randomcontent[2]="/quotes/03.html"
randomcontent[3]="/quotes/04.html"
randomcontent[4]="/quotes/05.html"
randomcontent[5]="/quotes/06.html"
randomcontent[6]="/quotes/07.html"
randomcontent[7]="/quotes/08.html"
randomcontent[8]="/quotes/09.html"
randomcontent[9]="/quotes/10.html"
randomcontent[10]="/quotes/11.html"


//No need to edit after here
if (ie||dom)
document.write('<iframe allowtransparency="true" 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