picture = new Array('Bloomington Hospital;www.bhhs.org;bhealth.gif','System Service International;;ssi.jpg','Monroe Bank;www.monroecountybank.com;monroe.jpg')
//www.ssisystem.com
parent.title = new Array('','','')

function showsponsor(mthis) {
if (parent.title[1]){
parent.winss = window.open('http://'+parent.title[1],"ss")
parent.winss.focus()
}
return false
}

function rotatesponsor() {
temp = parent.title[1]
i=Math.floor(picture.length*Math.random())
parent.title=picture[i].split(";")
if (temp == parent.title[1]) {
  rotatesponsor()
  return
}
document.images['sponsors'].src='sponsors/'+parent.title[2]
document.images['sponsors'].alt=parent.title[0]
}

i=Math.floor(picture.length*Math.random())
parent.title=picture[i].split(";")

//document.writeln("<a href=http://"+parent.title[1]+" onclick=showsponsor() target=ns>")
document.writeln("<a href='# our sponsors' onclick='return showsponsor()' target=ns>")
document.writeln("<img name=sponsors id=sponsors src=sponsors/"+parent.title[2]+" border=0 vspace=5 hspace=5 alt='Click Here to visit our sponsors.'></a>")
document.writeln("<br> &nbsp; Thanks to our sponsors. &nbsp; ")
setInterval('rotatesponsor()',20000)

