<!--
/*
Random Clickable Image + Text Script
April 2004
You can add new pictures and text by adding new lines that start with images[number]
and text[number]
*/
function random_imglinka(){
var images=new Array()
//specify random images below. You can have as many as you wish.
images[1]='<a href="/fimage.shtml?personalities/hrh1.jpg"><img src="/personalities/hrh1-tb.jpg" border=0></a>'
images[2]='<a href="/fimage.shtml?personalities/hrhvisit1.jpg"><img src="/personalities/hrhvisit1-tb.jpg" border=0></a>'
images[3]='<a href="/fimage.shtml?personalities/hrhvisit2.jpg"><img src="/personalities/hrhvisit2-tb.jpg" border=0></a>'
images[4]='<a href="/fimage.shtml?personalities/hrhvisit3.jpg"><img src="/personalities/hrhvisit3-tb.jpg" border=0></a>'

//specify corresponding text below
var text=new Array()
text[1]="HRH Prince Charles<br>Duke of Rothesay"
text[2]="Duke of Rothesay visits Bute"
text[3]="Duke of Rothesay visits Bute"
text[4]="Duke of Rothesay visits Bute"

var ry=Math.floor(Math.random()*images.length)
if (ry==0)
ry=1
document.write(images[ry]+'<BR>'+text[ry])
}
//-->
