

function random_imglink(){
var myimages=new Array("db2usergroup.gif", "tivoli100.gif", "informix.gif", "share.jpg", "gse.jpg", "interaction_ug.jpg", "common.gif", "u2ug.gif" );
//specify random images below. You can have as many as you wish

//specify corresponding links below
var imagelinks=new Array("/othercom","/othercom","/othercom","/othercom","/othercom","/othercom","/othercom","/othercom");


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="\/images\/'+myimages[ry]+'" width=100 height=74  border=0 class=padreg></a>')
//document.write('<img src="'+myimages[ry]+'" width=150 height=75>')
}
random_imglink()

