// Specify the first and last part of the image tag. 
FirstPart = '<img src="Images/photo';
LastPart = '.jpg" height="293" width="875">';
function printImage() {
var r = Math.ceil(Math.random() * 8);
document.write(FirstPart + r + LastPart);
}
 	
