//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
//http://www.visithomebiz.com/rifcon.js

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=500 height=185 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.visithomebiz.com/rdom/random1.htm"
randomcontent[1]="http://www.visithomebiz.com/rdom/random2.htm"
randomcontent[2]="http://www.visithomebiz.com/rdom/random3.htm"
randomcontent[3]="http://www.visithomebiz.com/rdom/random4.htm"
randomcontent[4]="http://www.visithomebiz.com/rdom/random5.htm"
randomcontent[5]="http://www.visithomebiz.com/rdom/random6.htm"
randomcontent[6]="http://www.visithomebiz.com/rdom/random7.htm"
randomcontent[7]="http://www.visithomebiz.com/rdom/random8.htm"
randomcontent[8]="http://www.visithomebiz.com/rdom/random9.htm"
randomcontent[9]="http://www.visithomebiz.com/rdom/random10.htm"
randomcontent[10]="http://www.visithomebiz.com/rdom/random11.htm"
randomcontent[11]="http://www.visithomebiz.com/rdom/random12.htm"
randomcontent[12]="http://www.visithomebiz.com/rdom/random13.htm"
randomcontent[13]="http://www.visithomebiz.com/rdom/random14.htm"
randomcontent[14]="http://www.visithomebiz.com/rdom/random15.htm"
randomcontent[15]="http://www.visithomebiz.com/rdom/vmc.htm"
randomcontent[16]="http://www.visithomebiz.com/rdom/diamond-ad.htm"

//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

