// JavaScript Document

//<!--

var ie2=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom2=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

//Specify IFRAME display attributes
var iframeprops2='width="210" height="250" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

//Specify random URLs to display inside iframe
var randomcontent2=new Array()
randomcontent2[0]="banner/banner1.htm"
randomcontent2[1]="banner/banner2.htm"
randomcontent2[2]="banner/banner3.htm"

//No need to edit after here
if (ie2||dom2)
document.write('<iframe id="banner2" name="banner2" src="" '+iframeprops2+'></iframe>')

function random_iframe2(){
if (ie2||dom2){
var iframeobj2=document.getElementById? document.getElementById("banner2") : document.all.banner
iframeobj2.src=randomcontent2[Math.floor(Math.random()*randomcontent2.length)]
}
}

window.onload=random_iframe2

//-->