// Random 8 Sight
var ie=document.all&&navigator.userAgent.indexOf("Opera")==-1
var dom=document.getElementById&&navigator.userAgent.indexOf("Opera")==-1

var iframeprops='width=100% height=75 marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no"'

var randomcontent=new Array()
randomcontent[0]="/english/include/MainSight_01.jsp"
randomcontent[1]="/english/include/MainSight_02.jsp"
randomcontent[2]="/english/include/MainSight_03.jsp"
randomcontent[3]="/english/include/MainSight_04.jsp"
randomcontent[4]="/english/include/MainSight_05.jsp"
randomcontent[5]="/english/include/MainSight_06.jsp"
randomcontent[6]="/english/include/MainSight_07.jsp"
randomcontent[7]="/english/include/MainSight_08.jsp"

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
