function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="/meetings/honolulu2004/images/786378-comp.gif"

//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="/meetings/honolulu2004/index.html"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" align="left" width=170 height=190 border=0></a>')
}
