// JavaScript Document
function random_imglink(){
var myimages=new Array(9)
myimages[1]="_global/images/do20_03.jpg"
myimages[2]="_global/images/dp21_03.jpg"
myimages[3]="_global/images/dp22_03.jpg"
myimages[4]="_global/images/dp23_03.jpg"
myimages[5]="_global/images/dp24_03.jpg"
myimages[6]="_global/images/dp25_03.jpg"
myimages[7]="_global/images/dp26_03.jpg"
myimages[8]="_global/images/dp27_03.jpg"
myimages[9]="_global/images/dp28_03.jpg"
var y=Math.round(Math.random()*9)
if (y==0) y=1
if (y>8) y=9
document.write('<img src="'+myimages[y]+'" border=0></a>')
}
random_imglink()