function getRandomImage(){
var random1 = Math.round(Math.random() * 0);
var first = ['0'];
var random2 = Math.round(Math.random() * 0);
var second = ['0'];
var random3 = Math.round(Math.random() * 1);
var third = ['0','1'];
var random4 = Math.round(Math.random() * 9);
var fourth = ['0','1','2','3','4','5','6','7','8','9'];
return 'Images/ConnectionsRandom' + first[random1] + second[random2] + third[random3] + fourth[random4] + '.jpg';}

function displayRandomImage(){document.write('<img src="' + getRandomImage() + '" width="150" height="130" alt="Photo" title="Photo" border="0">')}

function lastDateUpdated(){document.write('Website last updated February 4, 2010')}