<!-- Hide this script from old browsers --

var imagenumber = 6;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

images = new Array;
captions = new Array;
refs = new Array;

images[1]="/heirnet/images/km.gif";
captions[1]="King's Manor, University of York - The home of the ADS.";
refs[1]="http://ads.ahds.ac.uk/";

images[2]="/heirnet/images/nmr2.jpg";
captions[2]="Photograph of Ballingdon Hall on the move from the National Monuments Record for England ";
refs[2]="http://www.english-heritage.org.uk/";

images[3]="/heirnet/images/cbadob.jpg";
captions[3]="Image of the British People at War from the CBA's Defence of Britain project";
refs[3]="http://www.britarch.ac.uk/projects/dob/index.html";

images[4]="/heirnet/images/arnside.gif";
captions[4]="A bowl mount from Arnside recorded through the Portable Antiquities programme";
refs[4]="http://www.finds.org.uk/";

images[5]="/heirnet/images/sussex.jpg";
captions[5]="Mosaic at Bignor Roman Villa from the Romans in Sussex website";
refs[5]="http://romansinsussex.co.uk/";

images[6]="/heirnet/images/canmore.jpg";  
captions[6]="Canmore - the National Monuments Record for Scotland online database";
refs[6]="http://www.rcahms.gov.uk/canmoreintro.html";

var image=images[rand1];
var caption=captions[rand1];
var ref=refs[rand1]
document.write(' <a href="'+ref+'">');
document.write(' <img src="'+image+'" border="0" alt="'+caption+'" align="right"></a>');
// -- end hiding here -->



