// 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]="/Seoguportal/SeoguEnglish/index/MainSight_01.html"
randomcontent[1]="/Seoguportal/SeoguEnglish/index/MainSight_02.html"
randomcontent[2]="/Seoguportal/SeoguEnglish/index/MainSight_03.html"
randomcontent[3]="/Seoguportal/SeoguEnglish/index/MainSight_04.html"
randomcontent[4]="/Seoguportal/SeoguEnglish/index/MainSight_05.html"

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

