images = new Array(6);

images[0] = "<img src='/PHIL/templates/images/2/Gassendi.jpg' alt='Pierre Gassendi'>";

images[1] = "<img src='/PHIL/templates/images/2/James.jpg' alt='William James'>";

images[2] = "<img src='/PHIL/templates/images/2/Plato.jpg' alt='Plato'>";

images[3] = "<img src='/PHIL/templates/images/2/Reid.jpg' alt='Thomas Reid'>";

images[4] = "<img src='/PHIL/templates/images/2/Socrates.jpg' alt='Socrates'>";

images[5] = "<img src='/PHIL/templates/images/2/Wittgenstein.jpg' alt='Ludwig Wittgenstein'>";

images[6] = "<img src='/PHIL/templates/images/2/Mill.jpg' alt='John Stuart Mill'>";

images[7] = "<img src='/PHIL/templates/images/2/Newton.jpg' alt='Isaac Newton'>";


index = Math.floor(Math.random() * images.length);

document.write("<DL>\n");

document.write("<DT>" + "" + images[index] + "\n");

document.write("</DL>\n");
