// JavaScript Document
function random_imglink(){
var myimages=new Array(5)
myimages[1]="js/wimages/andrewpearson2.jpg"
myimages[2]="js/wimages/andrewpearson2.jpg"
myimages[3]="js/wimages/andrewpearson2.jpg"
var y=Math.round(Math.random()*3)
if (y==0) y=1
if (y>2) y=3
document.write('<img src="'+myimages[y]+'" border=0></a>')
}
random_imglink()
