// JavaScript Document
function random_imglink(){
var myimages=new Array(5)
myimages[1]="_global/images/f1_03.jpg"
myimages[2]="_global/images/f2_03.jpg"
myimages[3]="_global/images/f3_03.jpg"
myimages[4]="_global/images/f4_03.jpg"
myimages[5]="_global/images/f5_03.jpg"
myimages[6]="_global/images/f6_03.jpg"
myimages[7]="_global/images/f7_03.jpg"
myimages[8]="_global/images/f8_03.jpg"
myimages[9]="_global/images/f8_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()