<!--
    // JavaScript to interpolate random images into a page.
    var ic = 15;     // Number of alternative images
    var image = new Array(ic);  // Array to hold filenames
        
image[1] = "<a href='study/index.asp'><img src='/images/photos/home1.jpg' alt='' border='0'></a>"
image[2] = "<a href='study/index.asp'><img src='/images/photos/home2.jpg' alt='The Westminster school blazer' border='0'></a>"
image[3] = "<a href='study/index.asp'><img src='/images/photos/home3.jpg' alt='View of Westminster Abbey from Ashburnham Gardens' border='0'></a>"
image[4] = "<a href='study/index.asp'><img src='/images/photos/home4.jpg' alt='Clock face in Little Deans Yard' border='0'></a>"
image[5] = "<a href='study/index.asp'><img src='/images/photos/home5.jpg' alt='Breaktime at Little Deans Yard' border='0'></a>"
image[6] = "<a href='study/index.asp'><img src='/images/photos/home6.jpg' alt='photo six' border='0'></a>"
image[7] = "<a href='study/index.asp'><img src='/images/photos/home7.jpg' alt='photo seven' border='0'></a>"
image[8] = "<a href='academiclife/library.asp'><img src='/images/photos/home8.jpg' alt='Bookshelves in the main library' border='0'></a>"
image[9] = "<a href='study/index.asp'><img src='/images/photos/home9.jpg' alt='photo nine' border='0'></a>"
image[10] = "<a href='study/index.asp'><img src='/images/photos/home10.jpg' alt='photo ten' border='0'></a>"
image[11] = "<a href='activities/sports.asp'><img src='/images/photos/home11.jpg' alt='Cricketers at the Vincents Square Playing Fields' border='0'></a>"
image[12] = "<a href='study/history.asp'><img src='/images/photos/home12.jpg' alt='Names engraved on the wall' border='0'></a>"
image[13] = "<a href='activities/sports.asp'><img src='/images/photos/home13.jpg' alt='Rowing Oars at the Westminster Boathouse, Putney' border='0'></a>"
image[14] = "<a href='study/index.asp'><img src='/images/photos/home14.jpg' alt='Keeping score at Vincents Square cricket grounds' border='0'></a>"
image[15] = "<a href='study/index.asp'><img src='/images/photos/home15.jpg' alt='photo fifteen' border='0'></a>"
image[16] = "<a href='study/index.asp'><img src='/images/photos/home16.jpg' alt='photo sixteen' border='0'></a>"
image[17] = "<a href='study/index.asp'><img src='/images/photos/home20.jpg' alt='Aged specimens in formaldahyde at the Biology Labs' border='0'></a>"

function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
// Write out an IMG tag, using a randomly-chosen image name.
var choice = pickRandom(ic);
// -->




