// JavaScript Document
//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=405 height=60 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]="http://www.axisofstevil.com/random1.html"
randomcontent[1]="http://www.axisofstevil.com/random2.html"
randomcontent[2]="http://www.axisofstevil.com/random3.html"
randomcontent[3]="http://www.axisofstevil.com/random4.html"
randomcontent[4]="http://www.axisofstevil.com/random5.html"
randomcontent[5]="http://www.axisofstevil.com/random6.html"
randomcontent[6]="http://www.axisofstevil.com/random7.html"
randomcontent[7]="http://www.axisofstevil.com/random8.html"
randomcontent[8]="http://www.axisofstevil.com/random9.html"
randomcontent[9]="http://www.axisofstevil.com/random10.html"
randomcontent[10]="http://www.axisofstevil.com/random11.html"
randomcontent[11]="http://www.axisofstevil.com/random12.html"
randomcontent[12]="http://www.axisofstevil.com/random13.html"
randomcontent[13]="http://www.axisofstevil.com/random17.htm"
randomcontent[14]="http://www.axisofstevil.com/random18.htm"
randomcontent[15]="http://www.axisofstevil.com/random14.html"



//No need to edit after here
if (ie||dom)
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