// JavaScript Document

//<!--

var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

//Specify IFRAME display attributes
var iframeprops1='width=728 height=90 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

//Specify random URLs to display inside iframe
var randomcontent1=new Array()
randomcontent1[0]="banner/banner4.htm"
randomcontent1[1]="banner/banner5.htm"
randomcontent1[2]="banner/banner6.htm"
randomcontent1[3]="banner/banner7.htm"

//No need to edit after here
if (ie||dom)
document.write('<iframe id="banner1" name="banner1" src="" '+iframeprops1+'></iframe>')

function random_iframe1(){
if (ie||dom){
var iframeobj1=document.getElementById? document.getElementById("banner1") : document.all.banner
iframeobj1.src=randomcontent1[Math.floor(Math.random()*randomcontent1.length)]
}
}

window.onload=random_iframe1

//-->