//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=325 height=700 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]="feature_10.php"
randomcontent[1]="feature_11.php"
randomcontent[2]="feature_12.php"
randomcontent[3]="feature_13.php"
randomcontent[4]="feature_14.php"
randomcontent[5]="feature_15.php"
randomcontent[6]="feature_20.php"
randomcontent[7]="feature_21.php"
randomcontent[8]="feature_22.php"
randomcontent[9]="feature_23.php"
randomcontent[10]="feature_24.php"
randomcontent[11]="feature_30.php"
randomcontent[12]="feature_31.php"
randomcontent[13]="feature_32.php"
randomcontent[14]="feature_33.php"
randomcontent[15]="feature_34.php"

//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

